因為我的主機放在國外, 時差是 +13小時
我在發表文章時候時間是正確的
不過迴響時跟文章的時間又差+13
不知道有沒有人有相同情形??
後來我在
class/dao/commentscommn.class.php
function getPostComments( $artid,
$order = COMMENT_ORDER_NEWEST_FIRST,
$status = COMMENT_STATUS_ALL,
$type = COMMENT_TYPE_ANY,
$page = -1,
$itemsPerPage = DEFAULT_ITEMS_PER_PAGE )
..................
.................
..................
$date = Timestamp::getDateWithOffset( $comment->getDate(), $timeDiff );
改成
$date = Timestamp::getDateWithOffset( $comment->getDate(), 0 );
反而就正常了, 不知道這部份有沒有問題??