$dateTime = '2011-10-25 14:08:32';
我想显示PHP中的$dateTime
天。例如。 2011-10-25是星期二。
答案 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等中的同名函数。