原文链接: http://www.cncfan.com/html/?79_7760.html
如果要根据条件或循环包含文件,需要使用include().
require()语句只是被简单的包含一次,任何的条件语句或循环等对其无效。
由于include()是一个特殊的语句结构,因此若语句在一个语句块中,则必须把他包含在一个语句块中。
<?
//下面为错误语句
if($condition )
include($file );
else
include($other );
//下面为正确语句
if($condition ){
include($file );
}else
{
include($other );
}
?>
//下面为错误语句
if($condition )
include($file );
else
include($other );
//下面为正确语句
if($condition ){
include($file );
}else
{
include($other );
}
?>