微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php 浅析smarty中section嵌套循环的简单示例

PHP smarty中section嵌套循环感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!
<select name=parentId id=parentId>
<option value=0>根分类</option>
<{section name=big loop=$big}>
<option value=<{$big[big].id}>><{$big[big].type}></option>
<{section name=small loop=$big[big].small}>
<option value=<{$big[big].small[small].id}>>-<{$big[big].small[small].type}></option>
<{/section}> <{/section}>
</select>
$sqla=select * from .$tabext.navigation where parentId=0;
$allRecord=$db->getAllRecord($sqla);
$classNameArray=array();
foreach($allRecord as $v){
$sqls=select * from .$tabext.navigation where parentId=.$v['id'];
$allRecords=$db->getAllRecord($sqls); $childNameArray=array();
foreach($allRecords as $s){
array_push($childNameArray,$s);
}
$v['small']=$childNameArray;
array_push($classNameArray,$v);
}
$smarty->assign(big,$classNameArray);

以下是根据没有用smarty程序风格的写法所写:

<select name=ntype id=ntype>
<{section name=bigType loop=$bigType}>
<option value=a><{$bigType[bigType].type}></option>
<{section name=smallType loop=smallType}>
<option value=b><{$smallType[smallType].type}></option>
<{/section}>
<{/section}>
</select>
+++++++++++++++++++++++++++++
$sqla=select * from .$tabext.navigation where parentId=0;
$allRecord=$db->getAllRecord($sqla);
for($i=0;$i<count($allRecord);$i++){
$big[]=array(id=>$allRecord[$i]['id'],type=>$allRecord[$i]['type']);
$sqlb=select * from .$tabext.navigation where parentId=.$allRecord[$i]['id'];
$allRecords=$db->getAllRecord($sqlb);
$countallRecords=count($allRecords);
#debug($allRecords); if($countallRecords!=0){
for($j=0;$j<countallRecords;$j++){
$small[]=array(ids=>$allRecords[$j]['id'],types=>$allRecords[$j]['type']);
$smarty->assign('small',$small);
}
$smarty->assign('big',$big);
}
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/

原文地址:https://www.jb51.cc/php/527928.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐