当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。