PHP 配置指令 include_path 详解
程序员文章站
2022-06-27 20:52:34
php.ini中有个指令,include_path 包含路径,指定一系列路径列表,用于下面函数寻找文件,如 require,include,fopen(),file(),readfile() and file_get_contents(). 格式类似于系统环境变量, ,Unix用冒号(colon)分 ......
php.ini中有个指令,include_path 包含路径,指定一系列路径列表,用于下面函数寻找文件,如
require,include,fopen(),file(),readfile() and file_get_contents().
格式类似于系统环境变量,path
,unix用冒号(colon)分隔,windows用分号(semicolon)分隔;
php会按路径顺序分别寻找被包含文件,先找第一个,找不到再找第二个,直到找到对应文件,或者所有路径都找不到则返回一个warning
或error
。
除了可以在配置文件中指定外,还可以在运行时用 set_include_path()
或 ini_set
修改。
php的默认值是 .;/path/to/php/pear
.
示例一
include_path=".:/php/includes" //unix include_path=".;c:\php\includes" //windows
使用 .
允许指定相对路径,代表当前目录。不过,明确使用 include './file'
会比让php逐个检测当前路径更高效。
示例二
include_path = ".:${user}/pear/php"
环境变量在.ini文件中也是可以使用的,可以使用${login}
and ${user}
定位到主目录。
环境变量可能会根据所使用服务器api的不同而不同。
上一篇: Pytorch中自定义神经网络卷积核权重