PHP 時區 timezone 設定

php.ini找到

[Date]
;date.timezone =

改為

[Date]
date.timezone = "Asia/Taipei"

記得前面的冒號 ; 要拿掉
然後重新啟動apache即可

也有另外一種方式使用 php function

在php內只要輸入


 date_default_timezone_set("Asia/Taipei"); 或 ini_set("date.timezone", 'Asia/Taipei'); 
MYSQL讀取時區設定:
先查MySQL的時區設定,語法如下:
SHOW VARIABLES LIKE '%time_zone%';
若使用的是UTC(世界標準時間),我們的時區跟UTC差八小時,所以要執行下列的語法來變更:
SET TIME_ZONE='+8:00';
SHOW VARIABLES LIKE '%time_zone%';

若還是不行,則執行語法如下
將 NOW()改成
DATE_ADD(NOW(),INTERVAL 8 HOUR)
  • 1 A felhasználók hasznosnak találták ezt
Hasznosnak találta ezt a választ?

Kapcsolódó cikkek

wget 下載整個網站,或者特定目錄

我需要下載這個目錄下面的所有文件。命令如下 wget -c -r -np -k -L -p www.xxx.org/pub/path/ -c 斷點續傳 -r...

Manual backup via WHM

ran this command # /scripts/cpbackup --force & got following output [cpbackup] Process...

Apache restart failed. Unable to load pid from pid file and no httpd process found in process list.

Steps to Resolve the above error1.Login to ssh and type killall -9 httpd then try to restart http...

How to check the disk space on a Linux server?

Keeping an eye on disk space usage is critical for a server to stay healthy. The last thing a...

How To Install and Testing Memcache PHP Extension?

Create file test.php [code]$vi /home/www/public_html/test.php [/code] Execute test.php from...