程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 日期時差8小時間解決方法

php 日期時差8小時間解決方法

編輯:關於PHP編程

程序中添加時間的初始化語句:“date_default_timezone_set("asia/shanghai");

定義和用法

the date_default_timezone_set() function sets the default timezone used by all date/time functions.
date_default_timezone_set()函數的作用是:設定用於一個腳本中所有日期時間函數的默認時區。

syntax
語法

date_default_timezone_set(timezone)

parameter
參數 description
描述 timezone required. the timezone identifier, like "utc" or "europe/paris". list of valid timezones: http://www.php教程.net/manual/en/timezones.php
必要參數,時區確認器,如“utc”或“europe/paris”。下面列出了有效的時區:http://www.php.net/manual/en/timezones.php


tips教程 and notes
注意點

note: this function always returns true (even if the timezone parameter isn't valid).
注意:這個函數總是返回true(即使時區參數無效的情況下)。


example
案例

<?phpecho(date_default_timezone_set("europe/paris"));?>

the output of the code above will be:
上述代碼將輸出下面的結果:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved