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

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

restore_include_path();

// O utilizando ini_restore()
ini_restore('include_path');

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

?>

Ver también

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top