服务器端include(小型工业)用于创建功能,页眉,页脚,或内容,将重复使用的多个页面。
服务器端include
您可以插入的内容的文件到PHP文件之前,服务器执行它,与include( )或require( )函数。这两项职能是相同的各种方式,但他们如何处理错误。在include( )函数生成一个警告(但该脚本将继续执行) ,而需要( )函数生成一个致命的错误(和脚本执行后,将停止错误) 。
这两项职能是用于创建功能,页眉,页脚,或内容,可重复使用的多个页面。
这可以节省开发了相当多的时间。这意味着,您可以创建一个标准的标题或菜单文件,您想您的所有网页,include。当头需要更新,您只能更新一个include文件,或当你添加了新的一页到您的网站,您可以改变菜单文件(而不是更新的所有链接的网页) 。
在include( )函数
在include( )函数中的所有文本指定的文件并复制到文件,include使用功能。
范例1
假设您有一个标准的头文件,所谓的“ header.php ” 。include头文件在一个页面上,使用include( )函数,就像这样:
<html> <body> <?php include("header.php"); ?> <h1>Welcome to my home page</h1> <p>Some text</p> </body> </html> |
这三个文件, “ default.php ” , “ about.php ”和“ contact.php ”大家都应该include“ menu.php ”文件。以下是代码“ default.php ” :
<?php include("menu.php"); ?>
输出.
<html> <body> <a href="default.php">Home</a> | <a href="about.php">About Us</a> | <a href="contact.php">Contact Us</a> <h1>Welcome to my home page</h1> <p>Some text</p> </body> </html> |
下面我们再来看看require函数www.111cn.net/
的require( )函数是相同的,include( ) ,只是不同的处理错误。
在include( )函数生成一个警告(但该脚本将继续执行) ,而需要( )函数生成一个致命的错误(和脚本执行后,将停止错误) 。
如果您加入了文件,include( )函数和发生错误时,你可能得到一个错误信息类似下面的一个。
<?php
include("wrongFile.php");
echo "Hello World!";
?>
Warning: include(wrongFile.php) [function.include]: failed to open stream: No such file or directory in C:homewebsite est.php on line 5
Warning: include() [function.include]: Failed opening 'wrongFile.php' for inclusion (include_path='.;C:php5pear') in C:homewebsite est.php on line 5
www.111cn.net/phper/php.html
Hello World!
请注意,声明的回音仍是执行!这是因为报警不停止执行脚本。
现在,让我们运行相同的例子与require( )函数。
PHP代码:
<?php
require("wrongFile.php");
echo "Hello World!";
?>
提示:
ning: require(wrongFile.php) [function.require]:
failed to open stream:
No such file or directory in C:homewebsite est.php on line 5
Fatal error: require() [function.require]: Failed opening required 'wrongFile.php' (include_path='.;C:php5pear') in C:homewebsite est.php on line 5
转载: www.111cn.net/phper/php.html
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索网页
, 服务器
, 文件
, 函数
, 代码
错误
php include require、php include和require、include require 区别、require include、require once include,以便于您获取更多的相关知识。