温馨提醒

如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢

本文最后更新于2023年11月17日,已超过 180天没有更新

帝国CMS按照26个字母顺序循环调用信息,也就是a/b/c/e/f/g...的顺序依次调用。

<?
$pd_record=explode(",",'A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,W,X,Y,Z');
for($i=0;$i<count($pd_record);$i++)
{
?>                   
<div class="letter_items">
<dt id="<?=strtolower($pd_record[$i])?>"><?=$pd_record[$i]?></dt>
<div class="letter_item_con">
<?php
$newbook=$empire->query("select id,name from {$dbtbpre}extend_linkage where zm= '".$pd_record[$i]."' and parentid<>1 and id<>1 order by id desc");
while($r=$empire->fetch($newbook)) {
$num=$empire->gettotal("select count(*) as total from {$dbtbpre}ecms_weixin where city='$r[id]'");
?>
<dd><a href="/citylist/?city=<?=$r['id']?>&t=personal"><?=str_replace('市','',esub($r['name'],10))?>(<span><?=$num?></span>)</a></dd>
<?}?>                            
</div>
</div>
<?
}
?>

主要看这段for按字母顺序循环调用的方法

<?
$pd_record=explode(",",'A,B,C,D,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,W,X,Y,Z');
for($i=0;$i<count($pd_record);$i++)
{
?>

然后在看这段,内循环查询字段等于外循环字母的信息。

$newbook=$empire->query("select id,name from {$dbtbpre}extend_linkage where zm= '".$pd_record[$i]."' and parentid<>1 and id<>1 order by id desc");
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。