学学习网 手机版

学学习网

学习路径: 学习首页 > web开发 > PHP >

PHP—引用文件(2)

设置字体:
----------------------------------

现在,让我们使用 require() 函数运行相同的例子。
PHP代码:
<html>
<body>

<?php
require("wrongFile.php");
echo "Hello World!";
?>

</body>
</html>

错误消息:
Warning: require(wrongFile.php) [function.require]:
failed to open stream:
No such file or directory in C:\home\website\test.php on

line 5

Fatal error: require() [function.require]:
Failed opening required 'wrongFile.php'
(include_path='.;C:\php5\pear')
in C:\home\website\test.php on line 5
由于在致命错误发生后终止了脚本的执行,因此 echo 语句不会执行。

【大家注意】:正因为在文件不存在或被重命名时,我们的脚本不会继续执行,因此推荐大家使用 require(), 而不是 include()。

----------------------------------
  • 学学习
  • 需帮助 请留言
课程列表
重点难点
赞助链接