Description
void
restore_include_path ( void )
Restores the include_path
configuration option back to its original master value as set in
php.ini
Пример 1. restore_include_path() example
<?php
echo get_include_path(); set_include_path('/inc');
echo get_include_path(); restore_include_path();
ini_restore('include_path');
echo get_include_path(); ?>
|
|
See also ini_restore(),
set_include_path(),
get_include_path(), and
include().