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


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()函数:

程序:

<?php 
  
// Create a date formatter 
$fmt = datefmt_create( 
    'en_US', 
    IntlDateFormatter::LONG, 
    IntlDateFormatter::LONG, 
    '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) . "\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



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | IntlDateFormatter format() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。