如何以工作日,日月,年等格式格式化日期,例如2013年10月18日星期五? 我已经尝试使用strotime()和使用date()函数的回显但是无法实现这种格式,因为没有正确地返回工作日。
答案 0 :(得分:1)
答案 1 :(得分: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;