Blogger Information
Blog 8
fans 0
comment 0
visits 11701
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php文件引入
BlogofDaniel
Original
1517 people have browsed it

文件引入:将某一个文件的代码引入到另一个文件并执行代码

require(),require_once() 将其他文件引入到本文件,如果引入的文件不存在,报出致命性错误(require后面的代码完全不执行)


include(),include_once() 将其他文件引入到本文件,如果引入的文件不存在,报出文件不存在的警告(后面的代码还是会执行)


tip:

1.如果该文件中的代码已经被包含了,则不会再次包含。如同此语句名字暗示的那样,只会包含一次

2.四个文件引入语句的异同

3.都是引入文件,常用来引入公共的文件

4.require致命错误,include警告性错误


 不管用谁, 一定要在使用引入的内容之前,引入文件


补充: 无论是include,require还是return,,后面能不加括号就不加括号。include和require后面加不加括号对执行结果没有区别,但是效率较低。而return在返回引用的时候加上括号不但效率低而且会造成逻辑错误。


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post