程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php中的路徑問題與set_include_path使用介紹

php中的路徑問題與set_include_path使用介紹

編輯:關於PHP編程

first:

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所設置的目錄,然後再在當前目錄查找,這也是為什麼很多資料上提到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);//設置後的include_path變為類似/usr/lib/function;/usr/lib/pear
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved