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


PHP DateTime format()用法及代碼示例


DateTime::format()函數是PHP中的內置函數,用於根據指定的格式返回新的格式化日期。

用法:

  • 麵向對象的風格
    string DateTime::format( string $format )

    或者


    string DateTimeImmutable::format( string $format )

    或者

    string DateTimeInterface::format( string $format )
  • 程序風格
    string date_format( DateTimeInterface $object, string $format )

參數:此函數使用上麵提到和下麵描述的兩個參數:

  • $object:此參數保存DateTime對象。
  • $format:此參數保留date()函數接受的格式。

返回值:如果成功,此函數將返回新的格式化日期字符串;如果失敗,則返回False。

以下示例程序旨在說明PHP中的DateTime::format()函數:

程序1:

<?php 
  
// Initialising the DateTime() object with a date 
$datetime = new DateTime('2019-09-30'); 
  
// Calling the format() function with a  
// specified format 'd-m-Y' 
echo $datetime->format('d-m-Y'); 
  
?>
輸出:
30-09-2019

程序2:

<?php 
  
// Initialising the DateTime() object with a date 
$datetime = new DateTime('2019-09-30'); 
  
// Calling the format() function with a  
// specified format 'd-m-Y H:i:s' 
echo $datetime->format('d-m-Y H:i:s'); 
  
?>
輸出:
30-09-2019 00:00:00

參考: https://www.php.net/manual/en/datetime.format.php



相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 PHP | DateTime format() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。