您的位置:首页 > 其它

set_include_path() &&get_include_path()用法

2014-09-26 17:36 330 查看
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') in D:\AppServ\www\test.php on line 6
而且我们还发现
.;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 时排位居前的目录下的文件。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: