PHP code example of codebuglab / laravel-env

1. Go to this page and download the library: Download codebuglab/laravel-env library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

codebuglab / laravel-env example snippets


\CodeBugLab\Env::get('APP_KEY', 'default');

\CodeBugLab\Env::append('LOG_CHANNEL', 'daily');

\CodeBugLab\Env::replace('APP_KEY', 'another key');

\CodeBugLab\Env::delete('FOO');

$line = \CodeBugLab\Env::locate('APP_KEY');

\CodeBugLab\Env::reset('APP_KEY'); // APP_KEY=""