好吧,这就是我的代码的样子
索引.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
知道我做错了什么吗?谢谢