(PHP 4 >= 4.3.0, PHP 5, PHP 7)
restore_include_path — 还原 include_path 配置选项的值
此函数已在 PHP 7.4.0 中被弃用,并在 PHP 8.0.0 中被移除。强烈建议不要依赖此函数。
此函数没有参数。
不返回任何值。
示例 #1 restore_include_path() 示例
<?php
echo get_include_path(); // .:/usr/local/lib/php
set_include_path('/inc');
echo get_include_path(); // /inc
restore_include_path();
// 或者使用 ini_restore()
ini_restore('include_path');
echo get_include_path(); // .:/usr/local/lib/php
?>