如何使用PHP获取选定日期的一周中的某一天?

时间:2011-05-20 01:12:18

标签: php date

  

可能重复:
  How to find day of week in php

我希望获得所选日期的星期几。例如05/19/2011 = 星期四

4 个答案:

答案 0 :(得分:10)

以下是当前时间的方法:

$day=strftime("%A",time());

或特定日期:

$day=strftime("%A",strtotime("2011-05-19"));

答案 1 :(得分:2)

使用strtotime()date()

// below first parameter is lowercase "L"
$day_of_the_week = date('l', strtotime($your_date));

答案 2 :(得分:1)

您可以使用date()strtotime()

date('l', strtotime($date));

CodePad

答案 3 :(得分:0)

使用日期和strtotime功能。有关DATE

的更多信息
#date("format", int_timestamp);
#date("l", strtotime($date) );
$day= date("l", strtotime("05/19/2011") );