您好,登錄后才能下訂單哦!
這篇文章給大家介紹set_include_path語句怎么在php中使用,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
php中常用的路徑
當前文件路徑:D:\phpweb\php_example\include_path.php
復制代碼 代碼如下:
1.dirname(__FILE__); //輸出D:\phpweb\php_example
2.$_SERVER['SCRIPT_FILENAME']; //輸出D:/phpweb/php_example/include_path.php
second:
php中的set_include_path
在php中,include文件時,當包含路徑不為相對也不為絕對時(如:include("example.php")),會先查找include_path所設(shè)置的目錄,然后再在當前目錄查找,這也是為什么很多資料上提到include("./example.php")比include("example.php")效率高的原因。
方法:
1.ini_set("include_path", "/usr/lib/pear"); //所有版本
2.set_include_path("/usr/lib/pear"); //version>=4.3.0
可以用下面的方法,在原有目錄上添加目錄
復制代碼 代碼如下:
<?php
$path = '/usr/lib/pear';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);//設(shè)置后的include_path變?yōu)轭愃?usr/lib/function;/usr/lib/pear
?>
關(guān)于set_include_path語句怎么在php中使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。