PHP 8.5.0 RC 2 available for testing

IntlCalendar::toDateTime

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

IntlCalendar::toDateTimeConvert an IntlCalendar into a DateTime object

Description

Object-oriented style

public IntlCalendar::toDateTime(): DateTime |false

Procedural style

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).

Parameters

calendar

An IntlCalendar instance.

Return Values

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.

Examples

Example #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);

The above example will output:

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

See Also

Found A Problem?

Learn How To Improve This PageSubmit a Pull RequestReport a Bug
+add a note

User Contributed Notes

There are no user contributed notes for this page.

AltStyle によって変換されたページ (->オリジナル) /