Codeigniter TimeZone 時區有關問題及 PHP 時區設定

來源:互聯網
上載者:User
Codeigniter TimeZone 時區問題及 PHP 時區設定

我使用 Codeigniter 架構來搭建網站,使用 date ('Y-m-d h:i:s') 來擷取時間並存入資料庫,但是今天發現,存入的時間和我本地時間差好多。


因為時區不對導致時間和中國時間不一致,解決辦法一般有兩種:


(1)修改php.ini

[Date]; Defines the default timezone used by the date functions; http://php.net/date.timezonedate.timezone = PRC

修改後重啟 apache即可。


(2)在使用date() 之前使用date_default_timezone_set("Asia/Shanghai")

中國地區有如下的參數可以設定,具體分類的方法有待考察。

{ "cst",   0,  28800, "Asia/Chongqing"                },{ "cst",   0,  28800, "Asia/Chungking"                },{ "cst",   0,  28800, "Asia/Harbin"                   },{ "cst",   0,  28800, "Asia/Kashgar"                  },{ "cst",   0,  28800, "Asia/Macao"                    },{ "cst",   0,  28800, "Asia/Macau"                    },{ "cst",   0,  28800, "Asia/Shanghai"                 },{ "cst",   0,  28800, "Asia/Taipei"                   },{ "cst",   0,  28800, "Asia/Urumqi"                   },{ "cst",   0,  28800, "PRC"                           },{ "cst",   0,  28800, "ROC"                           },

但是,在codeigniter中,使用date後,發現時間依然差好多,所以,codeigniter中一定有設定時區的配置。

查看發現: 檔案 application/config/MY_config.php中有如下設定:


只要改為date_default_timezone_set("Asia/Shanghai")即可。

 
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.