程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php 5.3訪問Yii框架自帶的例子系統時頁面打印500錯誤

php 5.3訪問Yii框架自帶的例子系統時頁面打印500錯誤

編輯:PHP綜合

訪問Yii框架自帶的例子系統時,頁面打印500錯誤:

Error 500

date() [<a href='function.date'>function.date</a>]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'UTC' for '8.0/no DST' instead

經查和試驗解決方案為:

在php.ini中設置時區:

date.timezone = "Asia/Shanghai"

或者在網頁開頭中加入:

<?php

date_default_timezone_set("PRC");

?>

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