PHP code example of veloxbill / env-changer
1. Go to this page and download the library: Download veloxbill/env-changer 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/ */
veloxbill / env-changer example snippets
use veloxbill\LaravelEnv\Env;
$env = new Env();
$val = $env->getValue('APP_NAME');
echo $val; // Return the Value
use veloxbill\LaravelEnv\Env;
$env = new Env();
$val = $env->setValue('APP_NAME', 'Laravel App');
echo $val; // Return the Value
use veloxbill\LaravelEnv\Env;
$env = new Env();
$env->deleteVariable('PUSHER_APP_ID');