さて、これは私のコードがどのように見えるかです
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
私が間違っていることについて何か考えはありますか?ありがとう