Setting Environment and Configuration Variables : _ENV « Utility Function « PHP
- PHP
- Utility Function
- _ENV
Setting Environment and Configuration Variables
<?php
echo $_ENV['COMPUTERNAME'] . "<br />";
$_ENV['COMPUTERNAME'] = "Hello World!";
echo $_ENV['COMPUTERNAME'] . "<br />";
echo ini_get ('post_max_size');
ini_set('post_max_size','200M');
?>
Related examples in the same category