📜  PHP | IntlCalendar fromDateTime()函数

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

PHP | IntlCalendar fromDateTime()函数

IntlCalendar::fromDateTime()函数是PHP中的一个内置函数,用于从 DateTime 对象或字符串创建 IntlCalendar。 new calendar 的值表示与 DateTime 和 timezone 相同的时刻。

句法:

  • 面向对象风格
    IntlCalendar IntlCalendar::fromDateTime( mixed $dateTime )
  • 程序风格
    IntlCalendar intlcal_from_date_time( mixed $dateTime )

参数:此函数接受单个参数$dateTime ,其中包含可以传递给 DateTime::__construct()函数的 DateTime 对象或字符串。

返回值:此函数在成功时返回 IntlCalendar 对象,在失败时返回 NULL。如果将字符串作为参数传递,则 DateTime 构造函数内部会发生异常。

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

方案一:

add(IntlCalendar::FIELD_YEAR, 5); 
  
// Display the result date 
echo IntlDateFormatter::formatObject($calendar), "\n"; 
  
// Add the date 
$calendar->add(IntlCalendar::FIELD_YEAR, 10); 
  
// Display the result output 
echo IntlDateFormatter::formatObject($calendar), "\n"; 
  
// Add the date 
$calendar->add(IntlCalendar::FIELD_HOUR_OF_DAY, 10); 
  
// Display the result output 
echo IntlDateFormatter::formatObject($calendar); 
  
?> 
输出:
Aug 29, 2024, 9:19:29 AM
Aug 29, 2034, 9:19:29 AM
Aug 29, 2034, 7:19:29 PM

方案二:

add(IntlCalendar::FIELD_MONTH, 1); 
  
// Display the result date 
echo IntlDateFormatter::formatObject($calendar);
  
?> 
输出:
Sep 29, 2019, 9:19:29 AM

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