给定日期时间字符串的工作日名称

时间:2011-12-05 14:33:31

标签: php string datetime

$dateTime = '2011-10-25 14:08:32';

我想显示PHP中的$dateTime天。例如。 2011-10-25是星期二。

3 个答案:

答案 0 :(得分:9)

使用PHP的date()函数

date("l", strtotime($datetime));

答案 1 :(得分:3)

$day = date("l", strtotime($dateTime));

答案 2 :(得分:3)

或者,您可以使用strftime()

$day = strftime("%A", strtotime($dateTime));

PHP函数中的strftime()等效于C,Perl,GAWK,SQLite等中的同名函数。