當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP IntlCalendar::__construct()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 PHP | IntlCalendar::__construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。