PHP code example of erunion / env_cond

1. Go to this page and download the library: Download erunion/env_cond 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/ */

    

erunion / env_cond example snippets




return [
    'aws' => [
        's3_bucket' => env('AWS_S3_BUCKET', 'cdn.app.com')
    ]
];



return [
    'aws' => [
        's3_bucket' => env_cond('AWS_S3_BUCKET', 'dev.app', 'cdn.app.com')
    ]
];