的处理方式。
include() 函数会生成一个警告(但是脚本会继续执行),而require() 函数会生成一个致命错误(fatal error)(在错误发
生后脚本会停止执行)。
如果在您通过 include() 引用文件时发生了错误,会得到类似下面这样的错误消息:
PHP代码:
<html>
<body>
<?php
include("wrongFile.php");
echo "Hello World!";
?>
</body>
</html>
错误消息:
Warning: incl