ini_restore
(PHP 4, PHP 5)
ini_restore — Restores the value of a configuration option
Opis
void ini_restore
( string $varname
)
Restores a given configuration option to its original value.
Parametry
- varname
-
The configuration option name.
Zwracane wartości
nie jest zwracana żadna wartość.
Przykłady
Przykład #1 ini_restore() example
<?php
$setting = 'y2k_compliance';
echo 'Current value for \'' . $setting . '\': ' . ini_get($setting), PHP_EOL;
ini_set($setting, ini_get($setting) ? 0 : 1);
echo 'New value for \'' . $setting . '\': ' . ini_get($setting), PHP_EOL;
ini_restore($setting);
echo 'Original value for \'' . $setting . '\': ' . ini_get($setting), PHP_EOL;
?>
Powyższy przykład wyświetli:
Current value for 'y2k_compliance': 1 New value for 'y2k_compliance': 0 Original value for 'y2k_compliance': 1
Zobacz też:
- ini_get() - Gets the value of a configuration option
- ini_get_all() - Gets all configuration options
- ini_set() - Sets the value of a configuration option
ini_restore
There are no user contributed notes for this page.
