📜  PHP | IntlCalendar toDateTime()函数

📅  最后修改于: 2022-05-13 01:56:54.437000             🧑  作者: Mango

PHP | IntlCalendar toDateTime()函数

IntlCalendar::toDateTime()函数是PHP的内置函数,用于将 IntlCalendar 对象转换为 DateTime 对象。 DateTime 对象表示高达秒的精度,误差回合小于 1 秒。

句法:

  • 面向对象风格
    DateTime IntlCalendar::toDateTime( void )
  • 程序风格
    DateTime intlcal_to_date_time( IntlCalendar $cal )

参数:此函数接受单个参数$cal ,它保存 IntlCalendar 对象的资源。

返回值:此函数返回一个与此对象具有相同时区和相同时间的 DateTime 对象,但成功时精度较小,失败时返回 FALSE。

下面的程序说明了PHP中的 IntlCalendar::toDateTime()函数:

程序:

toDateTime();
  
// Display the DateTime object
var_dump($datetime);
  
// Declare a IntlGregorianCalendar
$calendar = new IntlGregorianCalendar(2019, 9, 22, 12, 40, 0);
  
// Convert the IntlGregorianCalendar into
// a DateTime object
$datetime = $calendar->toDateTime();
  
// Display the DateTime object
var_dump($datetime);
  
?>
输出:
object(DateTime)#3 (3) {
  ["date"]=>
  string(26) "2019-09-25 11:15:33.000000"
  ["timezone_type"]=>
  int(3)
  ["timezone"]=>
  string(13) "Asia/Calcutta"
}
object(DateTime)#4 (3) {
  ["date"]=>
  string(26) "2019-10-22 12:40:00.000000"
  ["timezone_type"]=>
  int(3)
  ["timezone"]=>
  string(3) "UTC"
}

参考: https://www. PHP.net/manual/en/intlcalendar.todatetime。 PHP