IntlCalendar::toDateTime
(PHP 5 >= 5.5.0, PHP 7, PECL >= 3.0.0a2)
IntlCalendar::toDateTime — Convert an IntlCalendar into a DateTime object
説明
オブジェクト指向型
public IntlCalendar::toDateTime ( ) : DateTime
手続き型
intlcal_to_date_time
( IntlCalendar $cal
) : DateTime
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).
パラメータ
cal
- The IntlCalendar resource.
返り値
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()
<?phpini_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 )
参考
- IntlCalendar::fromDateTime() - Create an IntlCalendar from a DateTime object or string
- IntlCalendar::getTime() - Get time currently represented by the object
- IntlCalendar::createInstance() - Create a new IntlCalendar
- DateTime:__construct()