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
相关用法
- PHP gettype()用法及代码示例
- PHP SplFileInfo getType()用法及代码示例
- PHP ReflectionParameter getType()用法及代码示例
- PHP DirectoryIterator getType()用法及代码示例
- PHP IntlCalendar get()用法及代码示例
- PHP IntlCalendar set()用法及代码示例
- PHP IntlCalendar after()用法及代码示例
- PHP IntlCalendar before()用法及代码示例
- PHP IntlCalendar add()用法及代码示例
- PHP IntlCalendar getFirstDayOfWeek()用法及代码示例
- PHP IntlCalendar getActualMinimum()用法及代码示例
- PHP IntlCalendar getAvailableLocales()用法及代码示例
- PHP IntlCalendar::__construct()用法及代码示例
- PHP IntlCalendar getErrorMessage()用法及代码示例
- PHP IntlCalendar getErrorCode()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | IntlCalendar getType() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。