PHP Doku:: Creates new DateTimeZone object - datetimezone.construct.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatums- und zeitrelevante ErweiterungenDatum und UhrzeitThe DateTimeZone classDateTimeZone::__construct

Ein Service von Reinhard Neidl - Webprogrammierung.

The DateTimeZone class

<<The DateTimeZone class

DateTimeZone::getLocation>>

DateTimeZone::__construct

(PHP 5 >= 5.2.0)

DateTimeZone::__constructCreates new DateTimeZone object

Beschreibung

Objektorientierter Stil

public DateTimeZone::__construct() ( string $timezone )

Prozeduraler Stil

DateTimeZone timezone_open ( string $timezone )

Creates new DateTimeZone object.

Parameter-Liste

timezone

One of timezones.

Rückgabewerte

Returns DateTimeZone on success. Prozeduraler Stil returns FALSE on failure.

Fehler/Exceptions

This method throws Exception if the timezone supplied is not recognised as a valid timezone.

Beispiele

Beispiel #1 Catching errors when instantiating DateTimeZone

<?php
// Error handling by catching exceptions
$timezones = array('Europe/London''Mars/Phobos''Jupiter/Europa');

foreach (
$timezones as $tz) {
    try {
        
$mars = new DateTimeZone($tz);
    } catch(
Exception $e) {
        echo 
$e->getMessage() . '<br />';
    }
}
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

DateTimeZone::__construct() [datetimezone.--construct]: Unknown or bad timezone (Mars/Phobos)
DateTimeZone::__construct() [datetimezone.--construct]: Unknown or bad timezone (Jupiter/Europa)


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)