0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Smarty使ったらtimezone関連のエラー表示が出てきたので対応した

Posted at

【エラー内容】
Smarty内のクラスで使っているstrftime()が使えません、という内容。

PHP Warning: strftime(): 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.

【対処】
strftime()を使っているメソッドの最初でdate_default_timezone_set("Asia/Tokyo")を実行する。

(参考)
https://kngy.net/2011/04/28/php5-timezone-warning/

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?