0
在我的數據庫中,registration_time設置爲current_timestamp
。但它提前7個小時。我該如何糾正它?current_timestamp在PHP中從now()中給出了不同的時間?
在我的數據庫中,registration_time設置爲current_timestamp
。但它提前7個小時。我該如何糾正它?current_timestamp在PHP中從now()中給出了不同的時間?
你實際mysql的時間是不同的,那麼該php
檢查
The current values of the global and client-specific time zones can be retrieved like this:
mysql> SELECT @@global.time_zone, @@session.time_zone;
要設置爲當前會話,這樣做:
SET time_zone = timezonename;
您也可以找到有關時區的細節設置在此link
您是否檢查過在服務器上設置的時間? –