update : 2015.11.03
php.shukuma.com검색:
|
IntlCalendar::toDateTime(PHP 5.5.0, PECL >= 3.0.0a2) IntlCalendar::toDateTime — Convert an IntlCalendar into a DateTime object 설명객체 기반 형식 절차식 형식 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). 인수
반환값
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 예제
Example #1 IntlCalendar::toDateTime()
<?php 위 예제의 출력: DateTime Object ( [date] => 2013-07-02 00:29:13 [timezone_type] => 3 [timezone] => Europe/Lisbon ) 참고
|