PHP restore_include_path 信息/选项函数
-
定义和用法
restore_include_path - 还原 include_path 配置选项的值 -
版本支持
PHP4 PHP5 PHP7 支持 支持 支持 -
语法
restore_include_path( void )
restore_include_path() 还原到 php.ini 中设置的 include_path 主值。 -
参数
参数 必需的 描述 无 -
返回值
没有返回值。 -
示例
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
-
相关页面
ini_restore() - 恢复配置选项的值get_include_path() - 获取当前的 include_path 配置选项set_include_path() - 设置 include_path 配置选项