我写了一个小代码来获取$ _GET [“page”],如果存在,请写一个页面$ _GET [“page”]。 “.html”进入div(带回声)。如果不存在,则页面为“about.html”。问题是,我搜索过但我没有找到解决方案...... 致命错误:函数名称必须是第63行的index.php中的字符串。 如果我进入一个不存在的页面(例如index.php?page = test)工作(打印“NOT FOUND”)但是如果我进入一个存在的页面(例如index.php?page = about或者简单index.php)不起作用。 这是代码:
$page = "about";
if (isset($_GET["page"]))
if (!empty($_GET["page"]))
$page = $_GET["page"];
$page .= ".html";
$result = "NOT FOUND";
if (file_exists($page))
$result = $file_get_contents($page); //line 63
echo $result;
答案 0 :(得分:1)
file_get_contents()
不是$file_get_contents()