|
|
ini_set to update settings of php.ini fileWe can't change all the configured settings of php.ini file. PHP will permit to change some data by using ini_set function. We will verify after changing the configured data by using ini_get function. Here is the code. Please note the outputs shown here will change based on your server settings when you try.
echo ini_get('mysql.connect_timeout'); // OUTPUT 60
ini_set('mysql.connect_timeout',100);
echo "<br>";
echo ini_get('mysql.connect_timeout'); // output 100
|
| | infinity | 08-04-2011 |
|---|
| this is not done plz give us brief discription of ini_set functions limit |
|
|
|
|
|
|