0
1

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 3 years have passed since last update.

php.iniで標準タイムゾーンに設定する(+dateについて)

Posted at

タイムゾーンの設定

MAMPでタイムゾーンを設定する

  • タイムゾーンの設定
    • MAMP→Open WebStart page→TOOLS→PHPINFOからPHP.iniの場所を確認(Loaded Configuration File)
    • タイムゾーンをAsia/Tokyoに変更
      • MAMPを再起動すればタイムゾーンが変更されている
    • 関数を使ってタイムゾーンを指定することもできる
      • レンタルサーバーを使っておりタイムゾーンが変更できない場合に使う
        例:date_default_timezone_set('America/Adak');
    • dateは日付などの情報得ることはできるけど表示することはできない。
      • printと合わせて使う。
        例:print(date('G時 i分 s秒'));

現在の時刻を表示させる(date)

  • 画面に現在の時刻を表示させる
    • dateは日付を司る関数
    • 's'は現在の秒を表示させる
      print(date('s'));
  • 他のパラメーターはこちら
    • 大文字と小文字を区別するため指定する場合は注意すること
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?