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


PHP IntlCalendar getType()用法及代碼示例


IntlCalendar::getType()函數是PHP中的內置函數,用於獲取字符串形式的日曆類型。 “calendar”是關鍵字的有效值。

用法:

  • 麵向對象的風格
    string IntlCalendar::getType( void )
  • 程序風格
    string intlcal_get_type( IntlCalendar $cal )

參數:該函數接受單個參數$cal,該參數保存IntlCalendar的資源。


返回值:此函數返回代表日曆類型的字符串值。

以下示例程序旨在說明PHP中的IntlCalendar::getType()函數:

程序:

<?php 
  
// Set the date timezone 
ini_set('date.timezone', 'Asia/Calcutta'); 
ini_set('intl.default_locale', 'en_US'); 
  
// Create an instance of calendar 
$calendar = IntlCalendar::createInstance(NULL, 'en_US'); 
  
// Display the calendar tyle 
var_dump($calendar->getType()); 
  
// Create an instance of calendar 
$calendar = IntlCalendar::createInstance(NULL, '@calendar=islamic'); 
  
// Display the calendar tyle 
var_dump($calendar->getType()); 
  
// Creare a DateTime object 
$calendar = IntlCalendar::fromDateTime('2019-03-21 09:19:29');  
  
// Display the calendar tyle 
var_dump($calendar->getType()); 
  
?>
輸出:
string(9) "gregorian"
string(7) "islamic"
string(9) "gregorian"

參考: https://www.php.net/manual/en/intlcalendar.gettype.php



相關用法


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