文字

IntlCalendar::toDateTime

(PHP 5.5.0, PECL >= 3.0.0a2)

IntlCalendar::toDateTimeConvert an IntlCalendar into a DateTime object

说明

面向对象风格

public DateTime IntlCalendar::toDateTime ( void )

过程化风格

DateTime intlcal_to_date_time ( IntlCalendar $cal )

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.

范例

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

以上例程会输出:

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()
上一篇: 下一篇: