如何在 PHP 中更改日期格式?
是的,使用 date() 和 strtotime() 结合起来,可以更改 PHP 中的日期格式。假设我们的日期如下——
$dateValue = "2020-09-19";
使用 strtotime() 方法更改日期格式——
$modifiedDate= date("d-m-Y", strtotime($dateValue));
例子
<!DOCTYPE html> <html> <body> <?php $dateValue = "2020-09-19"; echo "The original date format is=",$dateValue,"<br>"; $modifiedDate= date("d-m-Y", strtotime($dateValue)); echo "The changed date format is= ".$modifiedDate; ?> </body> </html>
输出
将生成以下输出
The original date format is=2020-09-19 The changed date format is= 19-09-2020
广告