PHP code example of phpbook / environment
1. Go to this page and download the library: Download phpbook/environment 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/ */
phpbook / environment example snippets
/********************************************
*
* Declare Configurations
*
* ******************************************/
/* Prefix environments variables. Default with no Prefix ('') */
\PHPBook\Environment\Variable::prefix('MY-APP-');
/* Get the prefix of environments variables. In this case returns 'MY-APP-' */
$prefix = \PHPBook\Environment\Variable::prefix();
/* Clear the prefix of environments variables. */
\PHPBook\Environment\Variable::prefix('');
/* Assign a environment variable with description */
\PHPBook\Environment\Variable::assign('APP-NAME', 'Application Name');
/* Assign a environment variable with description */
\PHPBook\Environment\Variable::assign('APP-VERSION', 'Application Version');
/* Get environment variable value */
$name = \PHPBook\Environment\Variable::get('APP-NAME');
if ($name) { // returns if assigned or null
$name->getName(); $name->getDescription(); $name->getValue();
};
/* Get environment variable value */
$version = \PHPBook\Environment\Variable::get('APP-VERSION');
if ($version) { // returns if assigned or null
$version->getName(); $version->getDescription(); $version->getValue();
};
/* Get all environment variable with values */
$variables = \PHPBook\Environment\Variable::list();
foreach($variables as $variable) {
$variable->getName();
$variable->getDescription();
$variable->getValue();
};