關於include中使用define的問題
a.php
define( 'PATH',dirname(__FILE__));
include('./index.php');
.
.
.
?>
b.php
include(../a.php);
echo PATH;
其中a.php和index.php在同一個檔案夾,而b.php在a.php的父資料夾中。
運行上面b.php,結果提示錯誤,說include()函數fial to open index.php,然後輸出了PATH,而PAHT的值時a.php的絕對路徑。
這是怎麼一回事,如果說include函數的工作機制是把檔案不做任何處理就包括進來,那麼PATH的值應該是b.php的絕對路勁;如果說include函數先要對一些函數做處理後在包括進來,那include('./index.php');問什麼又不執行呢?究竟include和define的工作機制是怎樣的?求高手
------最佳解決方案--------------------
include 與 define 有什麼關係 ,a.php 的目前的目錄下有index.php 嗎
2. 你的常量PATH 是在 a.php 定義的,取的當然是a.php 的絕對路徑
------其他解決方案--------------------
用 include('index.php'); //試試
------其他解決方案--------------------
引用:
用 include('index.php'); //試試
a.php和index.php在同一個檔案夾,然後我就改成了include('index.php')就可以了,這是為什麼呢?
' .'不是表示當前路勁下,‘./index.php’和'index.php'不是一樣的嗎?
還有include的工作機制究竟是怎樣的?
------其他解決方案--------------------
《PHP中include路徑的解決方案匯總》這篇部落格文章似乎解決了我的問題了。原來問題出現在__FILE__這裡,文章提到“__FILE__ always equals to the real path of a php script regardless whether it's included.” __FILE__的值總是與使用它的檔案的路徑一樣,而不管這個檔案是否被包含。所以才出現我說的情況。同時也說明了include路徑是一個危險的問題!!!!!
------其他解決方案--------------------
當你訪問a.php 時是相對於a.php的,因此 ./index.php 和index.php 都是可以的,但是如果你訪問b.php 時,此時應該是相對於b.php , 所以./index.php 就不對了,要../index.php 或者 index.php 才行 ,我是這麼理解的。