0
0

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.

(メモ)ZendFramework3 timezoneの初期設定

Posted at

はじめに

Zendframework3勉強中です。色々設定の問題を今後あった際、効率的処理できるように、メモしときます。

TimeZone設定

初期化されたSkeleton Applicationでは、timezoneが設定されていないため、

Warning: date(): It is not safe to rely on the system's timezone settings.

のメッセージが出てきます。

timeZoneの設定は、アプリで使われている任意のphpファイルに以下のコードを入れば完了です、自分はよくPublic/index.phpに入れています。

Public/index.php
//この行を入れます
date_default_timezone_set('Asia/Tokyo');
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?