Php/docs/function.set-include-path
来自菜鸟教程
set_include_path
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
set_include_path — 设置 include_path 配置选项
范例
Example #1 set_include_path() 例子
<?phpset_include_path('/usr/lib/pear');// 或使用 ini_setini_set('include_path', '/usr/lib/pear');?>
Example #2 添加到include path
利用常量 PATH_SEPARATOR
可跨平台扩展 include path。
这个例子中我们把 /usr/lib/pear
添加到了
现有的 include_path
的尾部。
<?php$path = '/usr/lib/pear';set_include_path(get_include_path() . PATH_SEPARATOR . $path);?>
参见
- ini_set() - 为一个配置选项设置值
- get_include_path() - 获取当前的 include_path 配置选项
- restore_include_path() - 还原 include_path 配置选项的值
- include - include