2016-11-06 113 views

回答

3

您忘記了UTC時區相對於您的位置的偏移量。爲您的代碼最小的解決辦法是使用gmdate

<?php 

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

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

週二

相關問題