How to retrive/get current environment in Laravel.

devquora
devquora

Posted On: Feb 22, 2018

 

The entire variable listed in a (.env) the file will be loaded in the $_ENV PHP when a request is received by an application. However, an ENV helper may be implemented to retrieve the values of the variables in a particular configuration file. If a Laravel configuration file is reviewed, several options can be noticed to assists these helpers in the following way:

‘Debug’=> env ('APP_DEBUG', false?),

The second value that is passed onto the env function is the default value. This value can be used if there is no environment variable present in the given key.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Laravel 9 interview questions

    List Server Requirements for installing Laravel Framework

    There is quite a requisite for the installation of Laravel 6. And, below is the list of the required servers that are needed for the installment of it.PHP 7.2.0 version Extension of BCMath PHP J...

    Laravel 9 interview questions

    What is Composer? How to install composer

    Composer is a tool to manage the dependency in PHP. Composer allows declaring the libraries of a project and the composer will install or update them for the user. It is not a package manager but deal...

    Laravel 9 interview questions

    How to create a Laravel Project using composer.

    To create a Laravel project using composer you can follow the given steps:Step 1: Point your browser address bar to https://getcomposer.org/composer.phar Step 2: Create a new Laravel project...