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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。