如何以工作日、日月、年等格式格式化日期,例如 2013 年 10 月 18 日星期五?我尝试使用 strotime() 和使用 date() 函数回显,但由于没有正确返回工作日,因此无法实现这种格式。
问问题
7994 次
2 回答
1
于 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;
于 2013-10-18T15:53:36.633 回答