📜  PHP | IntlDateFormatter format()函数

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

PHP | IntlDateFormatter format()函数

IntlDateFormatter::format()函数是PHP中的一个内置函数,用于将日期/时间值格式化为字符串。

句法:

  • 面向对象风格:
    string IntlDateFormatter::format( mixed $value )
  • 程序风格:
    string datefmt_format( IntlDateFormatter $fmt, mixed $value )

参数:此函数使用上面提到的两个参数,如下所述:

  • fmt:此参数保存日期对象的资源。
  • value:此参数保存格式的值。它可以是 DateTimeInterface 对象、IntlCalendar 对象或表示秒数的数字类型。如果传递了 DateTime 或 IntlCalendar 对象,则不考虑它。

返回值:此函数在成功时返回格式化字符串,在发生错误时返回 False。

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

程序:

format(0) . "\n";
  
echo 'Formatted output using procedural style: '
            . datefmt_format($fmt, 0) . "\n\n";
  
// Create a date formatter
$fmt = datefmt_create(
    'en_US',
    IntlDateFormatter::SHORT,
    IntlDateFormatter::SHORT,
    'Asia/Kolkata',
    IntlDateFormatter::GREGORIAN
);
  
// Display the date in given format
echo 'Formatted output using object oriented style: '
            . $fmt->format(0) ."\n";
              
echo 'Formatted output using procedural style: '
            . datefmt_format($fmt, 0);
  
?>
输出:
Formatted output using object oriented style: January 1, 1970 at 5:30:00 AM GMT+5:30
Formatted output using procedural style: January 1, 1970 at 5:30:00 AM GMT+5:30

Formatted output using object oriented style: 1/1/70, 5:30 AM
Formatted output using procedural style: 1/1/70, 5:30 AM

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