(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a2)
IntlCalendar::toDateTime — Convert an IntlCalendar into a DateTime object
DescriptionObject-oriented style
Return ValuesA 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.
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 )
There are no user contributed notes for this page.
↑ and ↓ to navigate • Enter to select • Esc to close
Press Enter without selection to search using Google
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4