“Laravel Check Environment Hlper” Kod odpowiedzi

Uzyskaj adres URL Laravel

env('APP_URL')
Witness

Laravel Check Environment Hlper

if (App::environment('local')) {
    // The environment is local
}

if (App::environment(['local', 'staging'])) {
    // The environment is either local OR staging...
}
Alberto Peripolli

Laravel App_ENV Config

if (\Illuminate\Support\Facades\App::environment('production')) {
    // The environment is production
}
Johs

Odpowiedzi podobne do “Laravel Check Environment Hlper”

Pytania podobne do “Laravel Check Environment Hlper”

Więcej pokrewnych odpowiedzi na “Laravel Check Environment Hlper” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu