當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。