检查日期是在工作日还是周末?

时间:2012-03-04 09:17:42

标签: php

如何检查美国格式的日期是否为 2012-01-01 是在PHP的工作日或周末?

1 个答案:

答案 0 :(得分:11)

$weekday = date("w", strtotime("2012-01-01"));

星期六到星期六的星期六为0。

http://www.php.net/manual/en/function.strtotime.php

http://php.net/manual/en/function.date.php