3
3

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.

Laravelでアプリケーションの環境によって条件分岐したいとき

Last updated at Posted at 2019-09-18

表題の件についてです。基本的には、ドキュメントに書かれている内容です :ok:

APPファサードのenvironmentメソッドを使う

if (App::environment('local')) {
    // 環境はlocal
}

if (App::environment(['local', 'staging'])) {
    // 環境はlocalかstaging
}

このことを知った背景

  • 以下のようなコードを書いていて、これだとキャッシュされてる場合、値を取れなくなる問題があると教えていただいた :pray:
if (env('APP_ENV') === 'local' || env('APP_ENV') === 'staging'){

}

Note: 開発期間中にconfig:cacheコマンドを実行する場合は、設定ファイルの中で必ずenv関数だけを使用してください。設定ファイルがキャッシュされると、.envファイルはロードされなくなり、env関数の呼び出しは全てnullを返します

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?