您是否將所有include_once
和require_once
都定位在文件的開始位置,以便清楚它的依賴關係是什麼,或者將它們放在使用它們的最本地範圍,以提高效率?哪裏可以定位include/require語句?
比方說,我有其中有一個函數來顯示一個錯誤信息的錯誤處理文件 - 你會...
require_once('error_handling.php');
... lots of code ...
if ($should_be_true === False)
{
ReportErrror(); // declared in error_handling.php
}
還是你
... lots of code ...
if ($should_be_true === False)
{
require_once('error_handling.php');
ReportErrror(); // declared in error_handling.php
}
嗯,看起來他們刪除在best-practise
標籤,與subjective
沿的'10
我認爲我傾向於你的思維方式。 – Mawg 2010-10-15 02:41:39