我希望获得所选日期的星期几。例如05/19/2011 = 星期四
答案 0 :(得分:10)
以下是当前时间的方法:
$day=strftime("%A",time());
或特定日期:
$day=strftime("%A",strtotime("2011-05-19"));
答案 1 :(得分:2)
// below first parameter is lowercase "L"
$day_of_the_week = date('l', strtotime($your_date));
答案 2 :(得分:1)
答案 3 :(得分:0)
使用日期和strtotime功能。有关DATE
的更多信息#date("format", int_timestamp);
#date("l", strtotime($date) );
$day= date("l", strtotime("05/19/2011") );