同时我的本地时间和服务器时间不相等,例如:
1)我的电脑当地时间是
$ python -c 'import time;print (time.strftime("%Y-%m-%d %I:%M-%S"))'
2013-11-12 12:35:44
2)从服务器我得到JSON:
public function waitingAction() {
$sql = "select status,createdate from sh_av_queue where `status`='waiting'";
$result = $this->db->fetchAll($sql);
$content = Zend_Json::encode($result);
$this->getResponse()
->setHeader('Content-Type', 'application/json')
->setBody($content)
->sendResponse();
exit;
}
[{"status":"waiting","createdate":"2013-11-12 15:35:44"}]
3)现在在本地PC中,我必须以这种格式表示时差:
00:00:00
00:00:01
...
00:00:59
在这种情况下如何使时间比较正确?(因为我的本地时间与服务器时间不同,但同时我必须比较两个不同的时间,因为它是本地 PC 时间比较)