string ini_get ( string varname ) reads a value from the php.ini file without altering it : ini_get « Utility Function « PHP






string ini_get ( string varname ) reads a value from the php.ini file without altering it

 
<?
    print "Display_errors is turned on: ";
    print (int) ini_get("display_errors");
?>
  
  








Related examples in the same category

1.Check to see the maximum post value size