好吧未定義功能,這是我的代碼是什麼樣子呼叫從另一個php文件
的index.php
require_once($WebsiteRoot . "/include/testfile.php");
TestFunction();
/include/testfile.php
function TestFunction()
{
echo "It Works";
}
它給我的錯誤:
Fatal error:
Call to undefined function TestFunction() in /path/index.php on line 49
任何想法我做錯了什麼? 謝謝
給出這些信息的唯一解釋是你沒有包含你認爲你包含的文件。 – JJJ
'echo $ WebsiteRoot。 「/include/testfile.php」;'你看到了什麼? – Sampson
如果您的index.php託管在與include文件夾相同的文件結構級別上,則不需要$ WebisteRoot變量。我想這個錯誤來自於此。 – nullpointr