略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: IntlCalendar::toDateTime

2024-05-02

IntlCalendar::toDateTime

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

IntlCalendar::toDateTimeConvert an IntlCalendar into a DateTime object

说明

面向对象风格

public IntlCalendar::toDateTime(): DateTime|false

过程化风格

intlcal_to_date_time(IntlCalendar $calendar): DateTime|false

Create a DateTime object that represents the same instant (up to second precision, with a rounding error of less than 1 second) and has an analog timezone to this object (the difference being DateTimeʼs timezone will be backed by PHPʼs timezone while IntlCalendarʼs timezone is backed by ICUʼs).

参数

calendar

IntlCalendar 实例。

返回值

A DateTime object with the same timezone as this object (though using PHPʼs database instead of ICUʼs) and the same time, except for the smaller precision (second precision instead of millisecond). Returns false on failure.

范例

示例 #1 IntlCalendar::toDateTime()

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

$cal IntlCalendar::createInstance('Europe/Lisbon'); //current time

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

以上例程会输出:

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

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/intlcalendar.todatetime.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3