ini_restore

(PHP 4, PHP 5)

ini_restoreRestores the value of a configuration option

Description

void ini_restore ( string $varname )

Restores a given configuration option to its original value.

Parameters

varname

The configuration option name.

Return Values

No value is returned.

Examples

Example #1 ini_restore() example

<?php
$setting 
'y2k_compliance';

echo 
'Current value for \'' $setting '\': ' ini_get($setting), PHP_EOL;

ini_set($settingini_get($setting) ? 1);
echo 
'New value for \'' $setting '\': ' ini_get($setting), PHP_EOL;

ini_restore($setting);
echo 
'Original value for \'' $setting '\': ' ini_get($setting), PHP_EOL;
?>

The above example will output:

Current value for 'y2k_compliance': 1
New value for 'y2k_compliance': 0
Original value for 'y2k_compliance': 1

See Also

Коментарии

Автор:
If like me you thought ini_restore() would restore to the most recent setting rather than the startup value, you could use this.

<?php

/**
 * Executes a function using a custom PHP configuration.
 * 
 * @param array $settings A map<ini setting name, ini setting value>.
 * @param callable $doThis The code to execute using the given settings.
 * @return mixed Returns the value returned by the given callable.
 */
function ini_using_do(array $settings, callable $doThis){
    foreach(
$settings as $name => $value){
       
$previousSettings[$name] = ini_set($name$value);
    }
   
$returnValue $doThis();
    if(isset(
$previousSettings)){
        foreach(
$previousSettings as $name => $value){
           
ini_set($name$value);
        }
    }
    return 
$returnValue;
}

?>
2016-01-11 16:08:28
http://php5.kiev.ua/manual/ru/function.ini-restore.html

    Поддержать сайт на родительском проекте КГБ