DateTimeZone::__construct

timezone_open

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

DateTimeZone::__construct -- timezone_open創(chuàng)建新的DateTimeZone對象

說明

面向?qū)ο箫L(fēng)格

public DateTimeZone::__construct(string $timezone)

過程化風(fēng)格

timezone_open(string $timezone): DateTimeZone

創(chuàng)建新的DateTimeZone對象.

參數(shù)

timezone

所支持的 timezone names之一.

返回值

成功時返回 DateTimeZone對象. 過程化風(fēng)格在失敗時返回 false

錯誤/異常

如果提供的時區(qū)無效,此方法將拋出 Exception異常.

范例

示例 #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 />';
    }
}
?>

以上例程會輸出:

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