PHP服务器之间的strtotime不一致

时间:2016-07-04 19:52:50

标签: php unix-timestamp

今天我注意到有关unix时间的事情:

$scope.editKeyword = function(name){
    console.log(name);
    //something done to change the <strong> element into a text input
};

这里发生了什么? 它不应该是平等的吗?

1 个答案:

答案 0 :(得分:2)

如果你在PHP时间文档(http://php.net/manual/en/function.time.php)上看一看,你就会看到php time计算自Unix Epoch(1970年1月1日00:00:00 GMT)以来的秒数。一个时区中一天的第0秒与另一个时区的第0秒不同,不同的php实例可能会使用不同的时区。