标签: php
如何检查美国格式的日期是否为 2012-01-01 是在PHP的工作日或周末?
答案 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