set_include_path
函數(shù)在腳本里動(dòng)態(tài)地對(duì)PHP.ini中include_path
修改。include_path可以針對(duì)include和require的路徑范圍進(jìn)行限定(預(yù)定義)藏姐。如果沒(méi)設(shè)置這個(gè)值站玄,則需要寫完全的路徑假残,例如:
include('123/test1.php');
include('123/test2.php');
這樣會(huì)引入很多外部文件嘹承,但如設(shè)置set_include_path('123/')可用下面代碼代替拉庵。
set_include_path('123/');
include('test1.php');
include('test2.php');
因?yàn)樯涔担瑘?zhí)行include或require時(shí),會(huì)去include_path指定路徑查找要引入文件恨憎,雖然不知道性能是否優(yōu)化蕊退,但可以節(jié)省代碼。當(dāng)然憔恳,還有玄機(jī)瓤荔!
這個(gè)函數(shù)不僅可定義一個(gè)文件夾,還可定義很多文件夾喇嘱。如下茉贡,寫一個(gè)初始化函數(shù):
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;是php.ini中include_path的默認(rèn)值塞栅。按照這個(gè)思路者铜,如果加載許多文件夾的話,就可以直接寫文件名了放椰。但是如果我就寫一個(gè)
set_include_path(dirname(__FILE__));
然后去引入其他文件夾的文件作烟,就會(huì)報(bào)錯(cuò),說(shuō)在我指定的這個(gè)文件夾內(nèi)找不到砾医。
首先拿撩,先用另外一種方法輸出一下:
<?php
set_include_path(dirname(__FILE__));
$include_value = ini_get('include_path');//這里的ini_get()函數(shù)注意
echo $include_value;
?>
結(jié)果是:D:\AppServ\www。我如果去www下找test4.php這個(gè)文件如蚜,則沒(méi)有報(bào)錯(cuò)
include('test4.php');
但是我如果去找
include('test1.php');
就會(huì)報(bào)錯(cuò):
Warning: include() [function.include]: Failed opening 'test1.php' for inclusion
(include_path='D:\AppServ\www') in D:\AppServ\www\test.php on line 6
而且我們還發(fā)現(xiàn).;C:\php5\pear;已經(jīng)被替換掉了压恒。所以我們?cè)谑褂玫臅r(shí)候影暴,如果不是僅在一個(gè)文件夾下引入文件,我們就需要在前面加上get_include_path().PATH_SEPARATOR .
探赫。get_include_path()
是獲取當(dāng)前include_path
的默認(rèn)值型宙。PATH_SEPARATOR
是個(gè)常量,是include的路徑分界符合伦吠,window上是;在unix和Linux上是妆兑。最后,也可以通過(guò)另外一種原始的方法整合文件毛仪。
ini_set('include_path', '目錄名');
需要注意兩點(diǎn)搁嗓,如在指定目錄下找不到要求包含的文件,在當(dāng)前頁(yè)面目錄下正好存在這個(gè)名稱的文件時(shí)箱靴,則默認(rèn)引入當(dāng)前目錄下的該文件腺逛。當(dāng)指定了多個(gè)目錄為 include_path ,而所要求包含的文件在這幾個(gè)目錄都有相同名稱的文件存在時(shí)衡怀,php選擇使用設(shè)定 include_path 時(shí)排位居前的目錄下的文件屉来。