Funciones de Opciones/Info de PHP
PHP Manual

restore_include_path

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

restore_include_pathRestablece el valor de la opción de configuración include_path

Descripción

void restore_include_path ( void )

Restablece la opción de configuración include_path a su valor maestro original, tal y como se encuentre definido en php.ini

Valores devueltos

No devuelve ningún valor.

Ejemplos

Ejemplo #1 Ejemplo de restore_include_path()

<?php

echo get_include_path();  // .:/usr/local/lib/php

set_include_path('/inc');

echo 
get_include_path();  // /inc

// Funciona a partir de PHP 4.3.0
restore_include_path();

// Funciona en todas las versiones de PHP
ini_restore('include_path');

echo 
get_include_path();  // .:/usr/local/lib/php

?>

Ver también


Funciones de Opciones/Info de PHP
PHP Manual