LaravelでのタイムゾーンをUTCからJSTに更新する方法
Laravelのタイムゾーンに関しては、
デフォルトでは、
「UTC(世界標準時間)」
になっている。
これを日本時間に変更する方法のメモ。
Laravelのタイムゾーンの設定箇所
タイムゾーンの設定箇所は、
以下のファイルになっているので、
その点を調整すれば、オッケー。
対象ファイル
config/app.php
修正箇所
上記のファイル内で、
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'UTC',
この「timezone」の設定部分を、
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'Asia/Tokyo',
このように、
Asia/Tokyo
に変更すればオッケー。
就職/転職に向けてスキルを高めるために
プログラミングのスキルを高めるために、
以下のサイトを参考にしてみてください。
おすすめ書籍
コメント一覧
コメントはまだありません。
コメントを残す