IntlCalendar::__construct()函数是PHP中的内置函数,用于创建私有构造函数以禁止实例化。
用法:
private IntlCalendar::__construct( void )
参数:该函数不接受任何参数。
返回值:该函数不返回任何值。
以下示例程序旨在说明PHP中的IntlCalendar::__construct()函数:
程序:
<?php
// Create an IntlCalendar from a DateTime object or string
$calendar = IntlCalendar::fromDateTime('2019-08-29 09:19:29');
// Add the date
$calendar->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
参考: https://www.php.net/manual/en/intlcalendar.construct.php
相关用法
- d3.js d3.lab()用法及代码示例
- PHP exp()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP abs()用法及代码示例
- PHP cos( )用法及代码示例
- PHP tan( )用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP next()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- d3.js d3.sum()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | IntlCalendar::__construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。