我有3個不同的文件 -如何在php中處理include_once循環?
fileMainIncludeEverywhere.php
... include_once('fileMinorInclude.php'); ?>
fileMinorInclude.php
... include_once('fileMainIncludeEverywhere.php'); ...
fileToRun.php
... include_once('fileMainIncludeEverywhere.php'); ...
我有很多的文件像fileToRun.php。
目前我沒有在我的代碼中遇到任何錯誤,但我想知道是否有任何情況下會失敗?
不會有錯誤。你應該在發佈SO之前閱讀手冊 - https://secure.php.net/manual/en/function.include-once.php。我認爲這很清楚? – spinkus
當你測試它時發生了什麼? – symcbean
@S。Pinkus我已經閱讀了手冊,它寫道,如果文件已包含在內,它將不會再被包含。但就我而言,該文件甚至沒有被包含一次。 – xRahul