php 函数 set_include_path

php set_include_path include 我们 文件 include_path 可以 如果 get_include_path PATH_SEPARATOR 编程技术
发布日期 2022-10-27 更新日期 2022-10-27 阅读次数 64 文章字数 2.0k

set_include_path函数,是在脚本里动态地对PHP.ini中include_path进行修改的。
而这个include_path呢,它可以针对下面的include和require的路径范围进行限定,或者说是预定义一下。

就好像:

如果我们没有设置这个值,可能我们需要写一些完全的路径:

<?php

include("123/test1.php");

include("123/test2.php");

include("123/test3.php");

require("123/test4.php");

require("123/test5.php");

?>

来引入很多外部文件,但是如果我们设置了set_include_path("123/"),我们就可以用下面这段代码代替。

<?php

set_include_path("123/");

include("test1.php");

include("test2.php");

include("test3.php");

require("test4.php");

require("test5.php");

?>

因为呢,当执行include或者require操作时,就会去include_path指定的路径去查找要引入的文件,虽然我现在不知道这样会不会在性能上有所优化,但是可以肯定的是,可以节省一部分代码。呵呵~

那么刚开始的时候,我以为它加不加都是一样的没什么不同,是因为我只包含了一个本文件夹下的文件。

后来,终于发现了其中的玄机!

那么这个函数它不仅可以定义一个文件夹,我们可以定义很多文件夹。如下所示,我要写一个初始化函数:

function initialize()
{

set_include_path(get_include_path().PATH_SEPARATOR .
"core/");

set_include_path(get_include_path().PATH_SEPARATOR .
"app/");

set_include_path(get_include_path().PATH_SEPARATOR .
"admin/");

set_include_path(get_include_path().PATH_SEPARATOR .
"lib/");

set_include_path(get_include_path().PATH_SEPARATOR .
"include/");

set_include_path(get_include_path().PATH_SEPARATOR."data/");

set_include_path(get_include_path().PATH_SEPARATOR."cache/");
}

这样它的路径就成了:

.;C:\php5\pear;core/;app/;admin/;lib/;include/;data/;cache/

哎,我们发现前面还有个.;C:\php5\pear;这到底是怎么回事呢,其实我们如果什么也不写直接先输出一下include_path的默认值,就会发现它就是.;C:\php5\pear;它可以允许随便去一个引入文件。

如果再加载了许多文件夹的话,我们直接写文件名就可以了!

如果我就写一个

set_include_path(dirname(__FILE__));

然后去引入其他文件夹的文件,就会报错,说在我指定的这个文件夹内找不到。

首先,我们先用另外一种方法输出一下:

<?php

set_include_path(dirname(__FILE__));

$include_value = ini_get('include_path');

echo $include_value;

?>

结果是:D:\AppServ\www>
我如果去www下找test4.php这个文件,则没有报错

include("test4.php");

但是我如果去找

include("test1.php");

就会报错:
Warning: include() [function.include]:
Failed opening 'test1.php' for inclusion
(include_path='D:\AppServ\www') inD:\AppServ\www\test.phpon line6

而且我们还发现.;C:\php5\pear;已经被替换掉了。所以我们在使用的时候,如果不是仅在一个文件夹下引入文件,我们就需要在前面加上get_include_path().PATH_SEPARATOR
.

解释一下:

get_include_path()是获取当前include_path的默认值

PATH_SEPARATOR
是个常量,是include的路径分界符合,在window上是;在unix和Linux上是:

最后,我还要说一下,其实我们也可以通过另外一种方法:即最原始的:

ini_set('include_path', '目录名');

另外,需要注意的两点就是:

如果在指定的目录下找不到所要求包含的文件,而在当前页面目录下正好存在这个名称的文件时,则默认引入当前目录下的该文件。

当指定了多个目录为 include_path ,而所要求包含的文件在这几个目录都有相同名称的文件存在时,php选择使用设定include_path 时排位居前的目录下的文件。


文章作者: 朱丰华

文章链接: https://smart.52dixiaowo.com/blog/post-159.html

版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。

php set_include_path include 我们 文件 include_path 可以 如果 get_include_path PATH_SEPARATOR

发表评论

相关推荐
朱丰华   |   7个月前   |   git

git从缓存中移除数据git rm --cached

408    评论    点赞
朱丰华   |   7个月前   |   php

php判断是否被iframe

221    评论    点赞
朱丰华   |   1年前   |   checkbox

checkbox默认传值问题

389    评论    点赞
朱丰华   |   1年前   |   linux · upx

Linux下安装UPX

406    评论    点赞
朱丰华   |   1年前   |   linux

linux保持后台进程不被关闭nohup &

254    评论    点赞
朱丰华   |   1年前   |   php

php正则表达式定界符:异常Delimiter must not be alphanumeric or backslash

190    评论    点赞
朱丰华   |   1年前   |   git · hub · 仓库

go克隆并引用github仓库

147    评论    点赞
朱丰华   |   1年前   |   请求 · 一个

ab测压命令,apache测压工具

172    评论    点赞
朱丰华   |   1年前   |   php · 缓存 · opcache

php 加速、提高并发opcache

198    评论    点赞
朱丰华   |   1年前   |   < · iframe

让iframe嵌入的视频自适应 (100%宽度)?

122    评论    点赞
朱丰华   |   1年前   |   go · gopath

Go自定义包并安装(GOPATH)

118    评论    点赞
朱丰华   |   1年前   |   正则 · 表达

正则表达式,实现if...then...else

113    评论    点赞
朱丰华   |   1年前   |   mysql · 变量 · sql

MySQL实现行号-自定义变量

113    评论    点赞
朱丰华   |   1年前   |   变量 · mysql · sql · 用户

MySQL用户自定义变量

95    评论    点赞
朱丰华   |   1年前   |   sql · php

PHP如何使用PDO批量执行SQL?

115    评论    点赞
朱丰华   |   1年前   |   sed · 文件

Shell 指定行处理head、tail、sed

156    评论    点赞
朱丰华   |   1年前   |   linux · 内容

linux环境下,对于一个大文件,如何查看其中某行的内容

69    评论    点赞
朱丰华   |   1年前   |   php · 字符 · 字符串

如何在 PHP 中将字符串的第一个字母转换为大写

150    评论    点赞
朱丰华   |   1年前   |   linux · 文件 · 行数

linux 取得文件行数

50    评论    点赞
朱丰华   |   1年前   |   php · 字符 · 正则

php正则表达式原生字符

86    评论    点赞
{{item.author_name}}   |   {{new Date(item.date*1000).log()}}   |   {{it}} ·

{{item.title}}

{{item.uv}}    评论    点赞