2016-11-06 99 views

回答

3

您忘记了UTC时区相对于您的位置的偏移量。为您的代码最小的解决办法是使用gmdate

<?php 

$year = 2016; 
$month = "November"; 

$string = "$year-$month-01"; 
echo gmdate("l",strtotime($string)); 

周二

相关问题