PHP Conference Japan 2024

IntlCalendar::toDateTime

(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a2)

IntlCalendar::toDateTime将IntlCalendar转换为DateTime对象

描述

面向对象风格

public IntlCalendar::toDateTime(): DateTime|false

过程化风格

intlcal_to_date_time(IntlCalendar $calendar): DateTime|false

创建一个DateTime对象,该对象表示相同的瞬间(精确到秒,误差小于1秒),并具有与该对象类似的时区(不同之处在于DateTime的时区由PHP的时区支持,而IntlCalendar的时区由ICU支持)。

参数

calendar

一个IntlCalendar实例。

返回值

一个DateTime对象,具有与该对象相同的时区(但使用PHP的数据库而不是ICU的数据库),以及相同的时间,只是精度较低(秒精度而不是毫秒精度)。失败时返回false

示例

示例 #1 IntlCalendar::toDateTime()

<?php
ini_set
('date.timezone', 'UTC');
ini_set('intl.default_locale', 'pt_PT');

$cal = IntlCalendar::createInstance('Europe/Lisbon'); //当前时间

$dt = $cal->toDateTime();
print_r($dt);

以上示例将输出

DateTime Object
(
    [date] => 2013-07-02 00:29:13
    [timezone_type] => 3
    [timezone] => Europe/Lisbon
)

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top