Environments
Environments system on production, development or else and how we can impact system.
Environments are set of system commands that will run on very first lines of entry-script and impact the system behaviors on error handling or define some const or environment variables.
Available Environment Attributes
Attribute
Value
Equivalent PHP Command
display_errors
(int) 0, 1
ini_set('display_errors', $value);
error_reporting
(string) 'E_ALL' , 'E_..'
error_reporting(E_ALL);
display_startup_errors
(int) 0, 1
ini_set('display_startup_errors', $value);
time_zone
(string) UTC
date_default_timezone_set('UCT')
html_errors
(int) 0, 1
ini_set('html_errors', $value);
defined_const
['const_name' => 'value']
define((string) $const, $value);
environments
['env_name' => 'value']
$_ENV[$name] = $value; //simplified
How environment system works
At very beginning of system setup Poirot looks for .env.php
and then.env.local.php
on root directory of project PT_DIR_ROOT
and merge the attributes of these files together and apply the environment commands that mentioned above.
We also could add extra .env
file by setting PT_ENV
environment variable on OS level to Poirot. examine that PT_ENV
has a value of europe_server
merging attributes would be: .env.php
+ .env.local.php
+ .env.europe_server.php
+ .env.europe_server.local.php
what is inside .env files?
Use Pre-Defined Environment Context
Some predefined environment files are exists that environment variables will merge and apply to that set of classes. Poirot instantiate that based on PT_ENV_PROFILE
environment variable and use default
if it's not set.
Available environment classes are:
Production:
production
,prod
Development:
development
,devel
,debug
Current PHP Setting:
php
,default
Determining The Current Environment
The current application environment is built upon your predefined .env
file and environment profile You may access these environment settings via the environment static method:
Last updated
Was this helpful?