首页 > Web开发 > 详细

php include include_once require require_once 的区别与联系

时间:2016-07-09 23:46:31      阅读:452      评论:0      收藏:0      [点我收藏+]

一、require 与 include 的区别:

The require() function is identical to include(), except that it handles errors differently.
 If an error occurs, the include() function generates a warning, but the script will continue execution. 
The require() generates a fatal error, and the script will stop.

这两个方法基本没有区别,除了在错误处理方面的。如果使用 include 方法出错,这个方法抛出一个warning,不影响程序的继续执行,但是 require 方法产生一个  fatal error,程序运行终止。

二、require 与 require_once 的区别:

The require_once() statement is identical to require() except PHP will check if the file has already been included,and if so, not include (require) it again.

这两个方法的区别在于如果使用 require_once php 会检查需要包含的文件是否已经被包含了,如果是,那么就不会重新包含。

php include include_once require require_once 的区别与联系

原文:http://www.cnblogs.com/smallrookie/p/5656857.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!