-2

如何以工作日、日月、年等格式格式化日期,例如 2013 年 10 月 18 日星期五?我尝试使用 strotime() 和使用 date() 函数回显,但由于没有正确返回工作日,因此无法实现这种格式。

4

2 回答 2

1

这可以这样做: -

<?php
     echo date('l \, jS  F Y ');
?>

您可以在此处了解有关日期和时间格式的更多信息。

于 2013-10-18T15:56:12.567 回答
0

这可以正常工作:

// Use string to time to get the date as a unix timestamp
$myTime = strtotime("Friday, 18th  October 2013");

// Use that timestamp to reform it into a date, in which ever format you want orrding to the date() documentation.
$newTime = date('l, jS F Y', $myTime);

// Show the date in the format
echo $newTime;

看到它在这里工作:http ://www.tehplayground.com/#i9U7grxCr

于 2013-10-18T15:53:36.633 回答