關於include中使用define的有關問題

來源:互聯網
上載者:User
關於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 才行 ,我是這麼理解的。
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.