我有一个 PHP 警告的小问题:
我基本上想通过单击链接来更改页面的内容,如下所示:
<?php $page = ((!empty($_GET['page'])) ? $_GET['page'] : 'home'); ?>
<h1>Pages:</h1>
<ul>
<li><a href="index.php?page=news">News</a></li>
<li><a href="index.php?page=faq">F.A.Q.</a></li>
<li><a href="index.php?page=contact">Contact</a></li>
</ul>
<?php include("$page.html");?>
这真的很好,但是当我使用一个不存在的页面时,例如
localhost/dir/index.php?page=notapage
我得到以下错误:
Warning: include(notapage.html): failed to open stream: No such file or directory in
C:\xampp\htdocs\dir\index.php on line 8
Warning: include(): Failed opening 'notapage.html' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\dir\index.php on line 8
是否可以用自定义消息替换此警告?(如“404 未找到”)
提前致谢,复活节快乐!