Home > php教程 > php手册 > body text

PHP提升-include(),require(),include

WBOY
Release: 2016-06-06 19:59:41
Original
1004 people have browsed it

PHP提升-include Include和require语句用于在执行流中向其他文件插入有用的代码。 Include 和 require 很相,除了在错误处理方面的差异。 Require会产生致命的错误(E_COMPILE_ERROR),并停止脚本,include只会产生警告(E_WARNING),脚本将会继续。 1. Require

PHP提升-include

Include和require语句用于在执行流中向其他文件插入有用的代码。

Includerequire很相似,除了在错误处理方面的差异。

Require会产生致命的错误(E_COMPILE_ERROR),并停止脚本,include只会产生警告(E_WARNING),脚本将会继续。

1.     Requirerequire_onceincludeinclude_once的区别。

Require():包含并运行指定文件。

Include():包含并运行指定文件。

Require_once():包含并运行指定文件,如果目标文件已经包含过,则不在包含,和require()语句类似。

Include_once():包含并运行指定文件,如果目标文件已经包含过,则不在包含,和include()类似。

2.     Require()require_once()的区别

如果被包含文件中的代码已经被包含了,则不再次包含。Require_once()适用于在脚本执行期间某文件有可能被包含多次的情况下,确保他只被包含了一次,以避免函数重定义,变量重新赋值等问题。

3.     Includeinclude _once()的区别

如果被包含文件中的代码已经被包含了,则不再次包含。Require_once()适用于在脚本执行期间某文件有可能被包含多次的情况下,确保他只被包含了一次,以避免函数重定义,变量重新赋值等问题。

4.     Require_once()include_once()的区别

需要注意的是,require_once()和include_once()在遇到错误时的行为完全不同,include会产生一个警告,而后面的代码会继续执行,而require_once()则导致一个致命的错误,停止脚本继续运行。

适用范围:

包含文件任意次数,出错时停止脚本运行就用require();

包含文件任意次数,出错时不停止,就用include();

包含文件一次,出错时停止脚本文件运行,就用require_once();

包含文件一次,出错时不停止,就用include_once();

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template