- 浏览: 73423 次
文章分类
- 全部博客 (38)
- ddddddddddd (1)
- java (37)
- Spring中Quartz的Cron表达式详解 (1)
- ORACLE中一个字符占多少字节 (1)
- sssdfd (1)
- jquery演示汉诺塔移动过程 (1)
- PHP中include和require (1)
- 试用CountDownLatch的副成品,多线程群发邮件小程序 (1)
- 金山词霸2005采用新的防止盗版的方法及简单解决方法 (1)
- 如何每天多给自己一小时? (1)
- 时间管理101招 (1)
- Eclipse扩展点笔记 (1)
- ERROR: the user data image is used by another emulator. aborting (1)
- GML对象的层次结构 (1)
- Java读取Word/Excel/PDF可以使用的第三方包 (1)
- 海水与火焰——领导眼中两种不同类型的员工 (1)
- 攘外必先安内 稳定才能发展 员工也是上帝 (1)
- 基于SVG技术实现WebGIS的基本功能(2) (1)
- MapXtreme2004代码 几个地图工具的使用(C#) (1)
- C#编写最小化到系统托盘的Windows应用程序 (1)
- iOS开发之详解剪贴板 (1)
- iOS开发之结合asp.net webservice实现文件上传下载 (1)
- VS2008 环境中完美搭建 Qt 4.7.4 静态编译的调试与发布 (1)
- wp数据库方案 (1)
- No action instance for path /leftTreeMenu could be created (1)
- OracleOraDb10g_home1TNSListener服务启动后又停止了 (1)
- 将多个Excel文件合并成一个的源码 (1)
- 悲催的this悲催的new (1)
- 搜索maven依赖的网站推荐 (1)
- Errors occurred during the build. Errors running builder 'JavaScript Validator' (1)
- [转]PKCS12 证书的生成及验证 (1)
- android: not find device (1)
- [转载]对session和cookie的一些理解 (1)
- 域名选择的那些事 (1)
- EJB 调用原理及原因 (1)
最新评论
-
houxinyou:
不论做员工还是做领导,我都喜欢海水!如果每个人都把该自己做的事 ...
海水与火焰——领导眼中两种不同类型的员工 -
zui4yi1:
可以推广到各行各业。
攘外必先安内 稳定才能发展 员工也是上帝
转载自:http://blog.sina.com.cn/s/blog_5d2673da0100cp6o.html
?
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">require()和include()有许多相似之处,也有些不同。理解它们的不同点非常重要,否则很容易犯错误。</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">????如果require()语句通过声明文件的URL来包含远程文件,而且远程服务器按照php代码来解释该文件的话,本地php文件中所包含的内容是在远程服务器上处理以后的结果。例如:<br>???<br><br>require("</span><a style="text-decoration: none; color: #599100;" href="http://some_server/file.txt?varfirst=1&varsecond=2"><span style="">http://some_server/file.txt?varfirst=1&varsecond=2</span></a><span style="">");</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style=""><br>require("</span><a style="text-decoration: none; color: #599100;" href="http://some_server/file.php?varfirst=1&varsecond=2"><span style="">http://some_server/file.php?varfirst=1&varsecond=2</span></a><span style="">");</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">2.include()语句<br>????include()语句和require()语句有许多相同的地方。凡是在上边require()语句中没有明确说明不能适用于include() 的部分外,require()语句的功能完全适用于include()语句。下边介绍require()语句所没有的include()语句的功能和特点。<br>????include语句只有在被执行时才会读入要包含的文件。在错误处理方便,使用include语句,如果发生包含错误,程序将跳过include语句,虽然会显示错误信息但是程序还是会继续执行!<br>???php处理器会在每次遇到include()语句时,对它进行重新处理,所以可以根据不同情况的,在条件控制语句和循环语句中使用include()来包含不同的文件。<br>???例如:<br><?php<br>$files=array('first.php','second.php','third.php');<br>???????for($i=0;$i<count($files);$i++)<br>???????{<br>???????include $files[$i];<br>}<br>?><br>???在php3.0和php4.0中include()语句所包含的文件中都可以使用return语句来返回一个值,并停止执行被包含文件下面的内容。但 php3.0和php4.0在处理这样的情况时有所不同。在php3.0中return语句不能包含在{}内,除非它在一个函数中,因为这时它表示函数的返回值而不是文件的返回值。而在php4.0中就没有了这样的限制,用户甚至可以在文件中返回一个数字,就象函数的返回值一样。这样的语句在</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">假设在main.php文件中包含下面的语句:<br><?php<br>$retval=include('test.inc');<br>echo "File returned:'$retval'<br>\n";<br>?><br>????php3.0解释器会在第二行报告错误,而不能得到include()语句的返回值。但在php4.0中会得到下面的结果:<br>Before the return<br>File returned: '27'<br>下边假设main.php改为:<br><?php<br>include('test.inc');<br>echo "Back in main.html<br>\n";<br>?><br>在php4.0中的输出结果是:<br>Before the return<br>Back in main.html</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">在php3.0中的输出结果是:<br>Before the return<br>27Back in main.html<br><br>Parse error:parse error in /apache/htdocs/phptest/main.html on line 5</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">3.require_once()和include_once()语句<br>require_once()和include_once()语句分别对应于require()和include()语句。require_once() 和include_once()语句主要用于需要包含多个文件时,可以有效地避免把同一段代码包含进去而出现函数或变量重复定义的错误。例如:如果创建两个文件util.inc和fool.inc,程序代码分别为:<br>util.inc:<br><?php<br>???define(PHPVERSION,floor(phpversion()));<br>???echo "GLOBALS ARE NICE<br>\n";<br>???function goodTea()<br>???{<br>??????????return "Olong tea tasts good!";<br>???}<br>?><br>和fool.inc:<br><?php<br>???require ("util.inc");<br>???function showVar($var)<br>???{<br>??????????if(PHPVERSION==4)<br>??????????{<br>????????????print_r($var);<br>??????????}<br>??????????else<br>??????????{<br>????????????var_dump($var);<br>??????????}<br>???}<br>?><br>然后在error_require.php中包含这两个文件:<br><?php<br>require("fool.inc");<br>require("util.inc");//此句会产生一个错误<br>$foo=array("1",array("complex","quaternion"));<br>???????echo "this is requiring util.inc again which is also<br>\n";<br>echo "required in fool.inc\n";<br>echo "Running goodTea:".goodTea()."<br>\n";<br>echo "Printing foo:<br>\n";<br>showVar($foo);<br>?><br>????当运行error_require.php时,输出结果如下:<br>????GLOBALS ARE NICE<br>????GLOBALS ARE NICE</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">include_once()语句的语法和include()语句类似,主要区别也是避免多次包含一个文件而引起函数或变量的重复定义。</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">和require_once语句一样,include_once语句把include的功能扩展了。在程序执行期间,将指定的文件包含进来,如果从文件引用进来的程序先前已经包含过的时候,include_once()就不会把它再包含进来。也就是仅仅可以引用同一个文件一次!</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">include_once() 应该用于在脚本执行期间同一个文件有可能被包含超过一次的情况下,想确保它只被包含一次以避免函数重定义,变量重新赋值等问题。</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">返回值和 include() 相同。如果文件已被包含,本函数返回 TRUE。</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">注: 要注意 include_once() 和 require_once() 在大小写不敏感的操作系统中(例如 Windows)的行为</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style=""><?php<br>include_once("a.php"); // this will include a.php<br>include_once("A.php"); // this will include a.php again on Windows! (PHP 4 only)<br>?></span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style="">如果要包含的文件不存在,include提示notice,然后继续执行下面的语句,require提示致命错误并且退出。</span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;"><span style=""> 如果一个文件不想被包含多次可以使用include_once或require_once## 读取,可以写入文档数据。<br><?php<br>function r($file_name) {<br> </span><a style="text-decoration: none; color: #599100;" href="mailto:%24filenum=@fopen(%24file_name,%22r"><span style="">$filenum=@fopen($file_name,"r</span></a><span style="">");<br> @flock($filenum,LOCK_SH);<br> </span><a style="text-decoration: none; color: #599100;" href="mailto:%24file_data=@fread(%24filenum,filesize(%24file_name"><span style="">$file_data=@fread($filenum,filesize($file_name</span></a><span style="">));<br> @fclose($filenum);<br> return $file_data;<br>}<br>function w($file_name,$data,$method="w"){<br> </span><a style="text-decoration: none; color: #599100;" href="mailto:%24filenum=@fopen(%24file_name,%24method"><span style="">$filenum=@fopen($file_name,$method</span></a><span style="">);<br> flock($filenum,LOCK_EX);<br> $file_data=fwrite($filenum,$data);<br> fclose($filenum);<br> return $file_data;<br>}<br>?></span>
<p style="margin-bottom: 5px; line-height: 21px; color: #323e32; font-family: simsun; font-size: 14px; text-align: left; background-color: #dceccc; padding: 0px;">很详细留下有需要的话再来看.
发表评论
-
EJB 调用原理及原因
2012-02-04 15:03 1103这里就结合WebSphere ... -
域名选择的那些事
2012-02-04 14:08 1011自从打定主意要自 ... -
[转载]对session和cookie的一些理解
2012-02-03 16:24 806由于项目需要,最近用session容器比较多,传载的同 ... -
android: not find device
2012-02-02 14:14 788每次修改framework/base/core/... ... -
[转]PKCS12 证书的生成及验证
2012-02-02 13:29 5036http://blog.csdn.net/kmyhy/ ... -
Errors occurred during the build. Errors running builder 'JavaScript Validator'
2012-01-31 14:53 20635<p>在myeclipse自动编译的时候, ... -
搜索maven依赖的网站推荐
2012-01-31 14:33 1117 &nb ... -
悲催的this悲催的new
2012-01-31 14:28 778今天才发现,原来我对this的理解竟然如此模糊,原来我 ... -
将多个Excel文件合并成一个的源码
2012-01-11 11:34 9218源码是在poi-3.1-FINAL-20080629版 ... -
OracleOraDb10g_home1TNSListener服务启动后又停止了
2011-12-28 15:58 1705Oracle 启动报错:OracleOraDb10g_ ... -
No action instance for path /leftTreeMenu could be created
2011-12-28 12:33 1308<span style="font-f ... -
wp数据库方案
2011-12-21 15:49 1366----------->转帖: <div ... -
VS2008 环境中完美搭建 Qt 4.7.4 静态编译的调试与发布
2011-12-20 14:43 4646[size=18px;]为什么要在VS2008中使用 ... -
iOS开发之结合asp.net webservice实现文件上传下载
2011-12-19 15:09 3730iOS开发中会经常用到文件上传下载的功能,这篇文件将介 ... -
iOS开发之详解剪贴板
2011-12-19 14:33 1475在iOS中,可以使用剪贴板实现应用程序之中以及应用程序 ... -
C#编写最小化到系统托盘的Windows应用程序
2011-12-15 13:59 1019</span></span>& ... -
MapXtreme2004代码 几个地图工具的使用(C#)
2011-12-15 11:29 748<p class="MsoNormal ... -
基于SVG技术实现WebGIS的基本功能(2)
2011-12-14 13:34 546<p class="MsoNorma ... -
攘外必先安内 稳定才能发展 员工也是上帝
2011-12-14 09:04 1041不少公司都有顾客满意度的调查。在年初时候设定一个目标, ... -
海水与火焰——领导眼中两种不同类型的员工
2011-12-13 09:54 971头一段时间,业务扩大,一个Team拆分成两个Team。 ...
相关推荐
在PHP编程语言中,include和require两个函数都是用于将一个文件包含到当前文件中,并且执行该文件中的代码。尽管它们的用途相同,但这两个函数在处理包含文件失败时的表现有着根本的区别。在实际开发过程中,了解这...
在PHP编程语言中,`include`和`require`都是用于导入其他PHP文件的函数,以在当前脚本中使用它们的代码、变量和函数。它们的主要目的是为了代码重用和组织,但它们之间存在一些关键差异,这些差异主要体现在错误处理...
在PHP变成中,include()与require()的功能相同,include(include_once) 与 require(require_once)都是把把包含的文件代码读入到指定位置来,但是二者再用法上有区别:(include()是有条件包含函数,而require()...
nclude()The include() 语句包括并运行指定文件。以下文档也适用于require()。这两种结构除了在如何处理失败之外完全一样。include() 产生一个警告而require() 则导致一个致命... 基本的 include() 例子vars.php复制
相信大家在使用PHP时经常看到include a.php、include_once a.php、require a.php或者require_once a.php类似这样的写法吧? 我们一起来学习和总结一下这几个语句的作用及特点! include 使用方法: include "test...
PHP中include和require语句用于包含并运行指定文件的代码,区别在于include在包含文件不存在时会产生警告,而require会产生致命错误。为了避免多次包含同一文件,可以使用include_once或require_once语句。 SESSION...
针对这个问题,我把include和require的详细用法进行归纳。(结合查阅资料和自己的理解,整合出来的)希望能给有需要的小伙伴一点帮助。 引入文件: 首先需要一个php文件: <?php class shao//类名必须和文件名...
现在来说include和require的区别: require()函数包含进来的内容被当成当前文件的一个组成部分,所以当包含进来的文件有语法错误或者文件不存在的时候,那当前文件的PHP脚本都不再执行. include()函数相当于指定这个...
php的require()与include(),在性能方面并无大的不同。 仅有的一些不同在于: include()执行时文件每次都要进行读取和评估; require()执行时文件只处理一次(实际上,文件内容替换了require()语句)。 即如果有包含...
在PHP编程中,`require`和`include`都是用于在脚本中引入其他文件的关键字,它们的作用相似,但略有不同。主要的区别在于处理错误的方式:`require`会在找不到文件时抛出致命错误并停止脚本执行,而`include`只会...
通过以上的介绍,我们对PHP中的`date()`函数以及`include`和`require`语句有了更深入的理解。这些知识点对于进行PHP开发非常重要,掌握它们可以帮助开发者更好地处理日期时间相关的逻辑以及有效地组织代码结构。
include() 、require()语句包含并运行指定文件。这两结构在包含文件上完全一样,唯一的区别是对于错误的处理。require()语句在遇到包含文件不存在,或是出错的时候,就停止即行,并报错。include()则继续即行。
在PHP编程语言中,`include`、`include_once`、`require`以及`require_once`是四个非常重要的语句,它们用于将一个或多个文件的内容插入到当前正在执行的脚本中。这些语句主要用于组织代码,重用功能或者引入配置...
描述在Gulp中扫描PHP文件,并处理include和require语句以内联HTML代码段。 以下全部已处理... 包括要求include_once require_once地位要求 -v3.9.1或更高版本安装npm install php-include-html --save-dev例子...