ini_restore

(PHP 4, PHP 5, PHP 7, PHP 8)

ini_restoreRestores the value of a configuration option

Descrição

ini_restore(string$option): void

Restores a given configuration option to its original value.

Parâmetros

option

The configuration option name.

Valor Retornado

Nenhum valor é retornado.

Exemplos

Exemplo #1 ini_restore() example

<?php
$setting
= 'html_errors';

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;
?>

O exemplo acima produzirá:

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

Veja Também

To Top