restore_include_path

(PHP 4 >= 4.3.0, PHP 5)

restore_include_path --  Restablece 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 de vuelta a su valor maestro original, tal y como se encuentre definido en php.ini

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

?>

Vea también ini_restore(), set_include_path(), get_include_path(), e include().

Hosting by: hurra.com
Generated: 2007-01-26 18:00:49