多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
break 和 continue 是各种循环中非常重要的两个流程标记语言,框架当然也会支持它们。 # 1:break 标签 我们在模板中写下如下的代码: ~~~ <list for=arrList> <if condition="$value eq 'H'"> <break/> </if> {$value} </list> ~~~ 模板编译后的结果: ~~~ <?php $index = 1; ?><?php if( is_array( $arrList ) ) : foreach( $arrList as $key => $value) : ?> <?php if( $value=='H' ) : ?> <?php break; ?> <?php endif; ?> <?php echo $value; ?> <?php $index++; ?><?php endforeach; endif; ?> ~~~ # 2:continue 标签 我们在模板中写下如下的代码: ~~~ <list for=arrList> <if condition="$value eq 'H'"> <continue/> </if> {$value} </list> ~~~ 模板编译后的结果: ~~~ <?php $index = 1; ?><?php if( is_array( $arrList ) ) : foreach( $arrList as $key => $value) : ?> <?php if( $value=='H' ) : ?> <?php continue; ?> <?php endif; ?> <?php echo $value; ?> <?php $index++; ?><?php endforeach; endif; ?> ~~~