LoginSignup
1
2

More than 3 years have passed since last update.

PHPでシステム時刻と違う結果が出るとき

Last updated at Posted at 2019-07-10

PHPをタイマー系の自分用バッチで使っていて、システムロケールと違う結果が出ると困りますよね。

タイムゾーンを設定したい場合は、以下を変更します。

date_default_timezone_set('Asia/Tokyo');

ロケール設定を変更する場合は、以下を変更します。

setlocale(LC_ALL, ''); // システム環境設定を読む
1
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
1
2