📜  PHP | IntlDateFormatter getDateType()函数

📅  最后修改于: 2022-05-13 01:56:53.809000             🧑  作者: Mango

PHP | IntlDateFormatter getDateType()函数

IntlDateFormatter::getDateType()函数是PHP中的一个内置函数,用于获取用于 IntlDateFormatter 对象的日期类型。

句法:

  • 面向对象风格:
    int IntlDateFormatter::getDateType( void )
  • 程序风格:
    int datefmt_get_datetype( IntlDateFormatter $fmt )

参数:此函数使用单个参数$fmt保存格式化程序的资源。

返回值:此函数返回格式化程序的当前日期类型值。

下面的程序说明了PHP中的 IntlDateFormatter::getDateType()函数:

方案一:


输出:
Calendar of formatter: 0
Formatted calendar output: 01/01/1970

Calendar of formatter: 3
Formatted calendar output: 1/1/70, 5:30 AM

方案二:

getDateType() . "\n";
   
// Get the format of date/time
// value as a string
echo "Formatted calendar output: "
        . $formatter->format(0) . "\n\n";
  
// Create a date formatter
$formatter = datefmt_create(
    'en_US',
    IntlDateFormatter::SHORT,
    IntlDateFormatter::SHORT,
    'Asia/Kolkata',
    IntlDateFormatter::TRADITIONAL
);
  
// Get the date/type formatter type
echo 'Calendar of formatter: '
        . $formatter->getDateType() . "\n";
   
// Get the format of date/time
// value as a string
echo "Formatted calendar output: "
        . $formatter->format(0);
  
?>
输出:
Calendar of formatter: 0
Formatted calendar output: 01/01/1970

Calendar of formatter: 3
Formatted calendar output: 1/1/70, 5:30 AM

参考: https://www. PHP.net/manual/en/intldateformatter.getdatetype。 PHP