场景是我正在使用php strtotime($ date)函数,它在我的本地主机和实时服务器上给出了不同的结果。
$date = "2014-11-27 19:15:00";
在local host
:
strtotime($date) gives 1417097700 which is the correct answer
在live server
:
strtotime($ date)给出1417112100
difference = 14400 seconds = 4hours
为什么要额外增加四个小时?
我不想要这种差异,我希望在我的本地主机上提供正确的价值。
注意:My timezone is GMT+5:00