我看不到我的位置的時間與以下PHP函數:PHP的日期功能
echo date("y-m-d h:m:s A");
這表明05年12月5日上午08時05分12秒但它05年12月5日12 :40:12 PM現在
可以anyoe修復此問題。
謝謝。
我看不到我的位置的時間與以下PHP函數:PHP的日期功能
echo date("y-m-d h:m:s A");
這表明05年12月5日上午08時05分12秒但它05年12月5日12 :40:12 PM現在
可以anyoe修復此問題。
謝謝。
設置您的首選時區在php.ini中:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Manila
你可以看到支持的時區here列表。
或者你可以去其他的方式,使用date_default_timezone_set()
。
修復了服務器的時間,或使用本:
http://php.net/manual/en/function.date-default-timezone-set.php
好,我檢查.. – Shibbir
設置的setlocale功能。 Here this the description
除了布雷克評論,我suggets嘗試,加+/-時候你需要 時間,例如
$timediff = 10;
$diff= $timediff+ ($timediff* 60 * 60)
也'/etc/init.d/ntp start' – Amber