用PHP格式化工作日,日月,年格式的日期?

时间:2013-10-18 15:49:58

标签: php date

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

2 个答案:

答案 0 :(得分:1)

这可以这样做: -

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

您可以了解有关日期和时间格式的更多here

答案 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;

在此处查看:http://www.tehplayground.com/#i9U7grxCr