Get individual information about the current PHP settings : ini_get_all « Utility Function « PHP
- PHP
- Utility Function
- ini_get_all
Get individual information about the current PHP settings
string ini_get (string varname)
<?php
echo ini_get ("post_max_size") . "<br />";
$myarray = ini_get_all();
print_r($myarray);
?>
Related examples in the same category