我試圖使用timeago(http://timeago.yarp.com/),並找到了使用php將時間戳從MYSQL轉換爲ISO-8601的解決方案。將MYSQL時間戳轉換爲ISO-8601而不使用timzone偏移量
date('c',strtotime($TimeStamp));
這工作得很好,除了即時得到的時區在年底偏移
2011-07-10T08:46:50-**05:00**
我要的是2011-07-10T08:46:50Z
有沒有人有一個解決方案或知道爲什麼,我發現了時區偏移?
http://os-code-web.blogspot.com/2011/04/15-top-php-coding-tutorials-tips-and.html –
結尾的'Z'*是一個時區抵消。它指定UTC時區,與2011-07-10T08:46:50-0000(或+0000,我想)相同。 – derobert