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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。