require_once() 淡淡的烟草味﹌ 2022-04-01 13:37 201阅读 0赞 # [**require\_once()**][require_once] # [**require\_once()**][require_once] 语句在脚本执行期间包括并运行指定文件。此行为和 [**require()**][require] 语句类似,唯一区别是如果该文件中的代码已经被包括了,则不会再次包括。有关此语句怎样工作参见 [**require()**][require] 的文档。 [**require\_once()**][require_once] 应该用于在脚本执行期间同一个文件有可能被包括超过一次的情况下,你想确保它只被包括一次以避免函数重定义,变量重新赋值等问题。 使用 [**require\_once()**][require_once] 和 [**include\_once()**][include_once] 的例子见最新的 PHP 源程序发行包中的 [PEAR][] 代码。 > **注:** [**require\_once()**][require_once] 是 PHP 4.0.1pl2 中新加入的。 > **注:** 要注意 [**require\_once()**][require_once] 和 [**include\_once()**][include_once] 在大小写不敏感的操作系统中(例如 Windows)的行为可能不是你所期望的。 > > <table> > <tbody> > <tr> > <td> > <div> > <a rel="nofollow"></a> > <p><strong>例子 16-8. <a href="http://www.phpe.net/manual/function.require-once.php" rel="nofollow"><strong>require_once()</strong></a> 在 Windows 下不区分大小写</strong></p> > <table> > <tbody> > <tr> > <td> > <div> > <code><span><span><?php<br></span><span>require_once(</span><span>"a.php"</span><span>); </span><span>// this will include a.php<br></span><span>require_once(</span><span>"A.php"</span><span>); </span><span>// this will include a.php again on Windows!<br></span><span>?></span> </span></code> > </div></td> > </tr> > </tbody> > </table> > </div></td> > </tr> > </tbody> > </table> <table> <tbody> <tr> <td align="center"><strong>警告</strong></td> </tr> <tr> <td align="left"> <p>Windows 版本的 PHP 在 4.3.0 版之前不支持该函数的远程文件访问,即使 <a href="http://www.phpe.net/manual/ref.filesystem.php#ini.allow-url-fopen" rel="nofollow">allow_url_fopen</a> 选项已被激活。 </p></td> </tr> </tbody> </table> [require_once]: http://www.phpe.net/manual/function.require-once.php [require]: http://www.phpe.net/manual/function.require.php [include_once]: http://www.phpe.net/manual/function.include-once.php [PEAR]: http://pear.php.net/
还没有评论,来说两句吧...