控制构造(Control Structures)


include_once

include_onceinclude将指定脚本文件内容包含在当前脚本中时使用。但不同于include在其包括已包含文件的情况时,不再包含相应文件。

语法构造 说明
include_once filename; 将属于文件名内的文件包括在当前脚本
文件名可按字符串变量形式使用
文件名区分大/小写
test.php
<?php
echo "Hello\r\n";
?>
init.php
<?php
include "test.php";       // include test.php
include "test.php";       // include test.php again
include_once "test.php";  // not include test.php
?>
[result]  
Hello
Hello