列表页调用所有小图,方法如下:,一定要勾选使用程序代码
4BsECMSPLUS4BsECMSPLUS$fr=$empire->fetch1("select * from {$dbtbpre}ecms_news where id='$r[id]'");
4BsECMSPLUS$rexp="\r\n";
4BsECMSPLUS$fexp="::::::";
4BsECMSPLUS$rr=explode($rexp,$fr[morepic]);
4BsECMSPLUS$count=count($rr);
4BsECMSPLUS$listtemp="";
4BsECMSPLUSfor($i=1;$i<$count+1;$i++)
4BsECMSPLUS{
4BsECMSPLUS$frt=explode($fexp,$rr[$i-1]);
4BsECMSPLUS$listtemps.=('<a href="'.$frt[1].'"><img src="'.$frt[0].'"></a>');
4BsECMSPLUS}
4BsECMSPLUS$listtemp=('<li>'.$listtemps.'</li>');
4BsECMSPLUS4BsECMSPLUS如果表是副表,则添加
_data_{$r[stb]}4BsECMSPLUSselect * from {$dbtbpre}ecms_news
_data_{$r[stb]} where id='$r[id]' 红线标注为副表,注意区分
4BsECMSPLUS4BsECMSPLUS4BsECMSPLUS内容页,如果也要对图集进行分割,可以这样:
4BsECMSPLUS4BsECMSPLUS<?php
4BsECMSPLUS$arr = array();
4BsECMSPLUS$arr = $navinfor['morepic'];
4BsECMSPLUS$newarr = explode(egetzy('rn'),$arr);
4BsECMSPLUS$count = count(explode(egetzy('rn'),$navinfor[morepic]));//图集的图片数量
4BsECMSPLUSfor($i=0;$i<$count;$i++)
4BsECMSPLUS{
4BsECMSPLUS$s_arr = array();
4BsECMSPLUS$s_arr[] = $newarr[$i];
4BsECMSPLUS$str = $s_arr[0];
4BsECMSPLUS$bot_arr = explode("::::::", $str);
4BsECMSPLUS$spic = $bot_arr[0];//小图
4BsECMSPLUS$bpic = $bot_arr[1];//大图
4BsECMSPLUS$picinfo = $bot_arr[2];//图片说明
4BsECMSPLUS4BsECMSPLUSecho ' <li> <a href="javascript:void(0);"><img src="'.$spic.'" alt="'.$picinfo.'" bigimg="'.$bpic.'" text="'.$picinfo.'" /></a></li>';
4BsECMSPLUS4BsECMSPLUS}
4BsECMSPLUS?>
4BsECMSPLUS4BsECMSPLUS4BsECMSPLUS内容页图片统计
4BsECMSPLUS <?php
4BsECMSPLUS4BsECMSPLUS$sl=empty($navinfor[morepic])?0:count(explode(chr(13),$navinfor[morepic]));
4BsECMSPLUSecho $sl;
4BsECMSPLUS?>
4BsECMSPLUS4BsECMSPLUS
多样式调用
4BsECMSPLUS$titlepic='';
4BsECMSPLUS$morepic='';
4BsECMSPLUSif($r[titlepic])
4BsECMSPLUS{
4BsECMSPLUS$titlepic='<a href="" target="_blank"> <span class="newspic"><img src="[!--titlepic--]" alt="[!--oldtitle--]" /></span></a>
4BsECMSPLUS <h2 class="newstitle"><a href="[!--titleurl--]" target="_blank">[!--title--]</a></h2>';
4BsECMSPLUS}
4BsECMSPLUSif($r[morepic])4BsECMSPLUS{
4BsECMSPLUS$fr=$empire->fetch1("select * from {$dbtbpre}ecms_news where id='$r[id]'");
4BsECMSPLUS$rexp="\r\n";
4BsECMSPLUS$fexp="::::::";
4BsECMSPLUS$rr=explode($rexp,$fr[morepic]);
4BsECMSPLUS$count=count($rr);
4BsECMSPLUSfor($i=1;$i<
5;$i++)
4BsECMSPLUS{
4BsECMSPLUS$frt=explode($fexp,$rr[$i-1]);
4BsECMSPLUS$titlepis.=('<li><i><a href="[!--titleurl--]"><img src="
'.$frt[0].'"></a></i></li>');
4BsECMSPLUS}
4BsECMSPLUS$titlepic=(' <h2 class="newstitle"><a href="[!--titleurl--]" target="_blank">[!--title--]</a></h2><div class="newspicbox"><ul>
'.$titlepis.'</ul><div class="count">
'.$count.'图</div></div>');
4BsECMSPLUS}
4BsECMSPLUS4BsECMSPLUS$listtemp='
4BsECMSPLUS<li class="newslist" data-scroll-reveal="enter bottom over 1s">
4BsECMSPLUS'.$titlepic.'4BsECMSPLUS <div class="bloginfo">
4BsECMSPLUS <ul>
4BsECMSPLUS <li class="author">[!--writer--]</li>
4BsECMSPLUS <li class="lmname"><a href="[!--this.classlink--]" title="[!--this.classname--]" target="_blank" class="classname">[!--this.classname--]</a>
4BsECMSPLUS <li class="timer">[!--newstime--]</li>
4BsECMSPLUS <li class="view"><span>[!--onclick--]</span></li>
4BsECMSPLUS </ul>
4BsECMSPLUS </div>
4BsECMSPLUS </li>
4BsECMSPLUS';
4BsECMSPLUS4BsECMSPLUS效果如下图:
4BsECMSPLUS4BsECMSPLUS
首页获取单张小图调用方法:
4BsECMSPLUS$morepic='';
4BsECMSPLUSif($r[morepic])
4BsECMSPLUS{
4BsECMSPLUS$fr=$empire->fetch1("select * from {$dbtbpre}ecms_news where id='$r[id]'");
4BsECMSPLUS$rexp="\r\n";
4BsECMSPLUS$fexp="::::::";
4BsECMSPLUS$rr=explode($rexp,$fr[morepic]);
4BsECMSPLUS$count=count($rr);
4BsECMSPLUSfor($i=1;$i<2;$i++)
4BsECMSPLUS{
4BsECMSPLUS$frt=explode($fexp,$rr[$i-1]);
4BsECMSPLUS$listtemps.=('<li><i><a href="[!--titleurl--]" title="[!--oldtitle--]"><img src="'.$frt[0].'"></a></i><span class="picture-item">[!--oldtitle--]</span></li>');
4BsECMSPLUS}
4BsECMSPLUS4BsECMSPLUS}
4BsECMSPLUS4BsECMSPLUS$listtemp=('
'.$listtemps.'');
4BsECMSPLUS4BsECMSPLUS4BsECMSPLUS内容页:
4BsECMSPLUS4BsECMSPLUS<?php
4BsECMSPLUS$picr=explode(egetzy('rn'),$navinfor[morepic]);
4BsECMSPLUSfor($p=0;$p<count($picr);$p++)
4BsECMSPLUS{
4BsECMSPLUS$spicr=explode("::::::",$picr[$p]);
4BsECMSPLUS?>
4BsECMSPLUS <li>
4BsECMSPLUS <div class="picimg"><img src="<?=$spicr[0]?>" /></div>4BsECMSPLUS <div class="pictxt">
4BsECMSPLUS <h3>[!--title--]</h3>
4BsECMSPLUS </div>
4BsECMSPLUS </li>
4BsECMSPLUS4BsECMSPLUS<?php
4BsECMSPLUS}
4BsECMSPLUS?>
实际使用demo:
$fr=$empire->fetch1("select * from {$dbtbpre}ecms_shop_data_{$r[stb]} where id='$r[id]'");
4BsECMSPLUS$rexp="\r\n";
4BsECMSPLUS$fexp="::::::";
4BsECMSPLUS$rr=explode($rexp,$fr[morepic]);
4BsECMSPLUS$count=count($rr);
4BsECMSPLUS$listtemp="";
4BsECMSPLUSfor($i=1;$i<$count+1;$i++)
4BsECMSPLUS{
4BsECMSPLUS$frt=explode($fexp,$rr[$i-1]);
4BsECMSPLUS$listtemps.=('<div class="swiper-slide"><div class="testimonial" > <div class="thumb"> <img src="'.$frt[1].'" alt="'.$frt[0].'"> </div> <div class="name"><h4 class="title">[!--title--]</h4></div></div></div>');
4BsECMSPLUS}
4BsECMSPLUS$listtemp=('<div class="section pt-10" id="details[!--id--]">
4BsECMSPLUS <div class="container">
4BsECMSPLUS <div class="row">
4BsECMSPLUS <div class="col-md-6 col-lg-6 mb-6 col-sm-12" data-aos="fade-right" data-aos-delay="400">
4BsECMSPLUS <div class="testimonial-carousel pt-10">
4BsECMSPLUS <div class="swiper-container">
4BsECMSPLUS <div class="swiper-wrapper">
4BsECMSPLUS '.$listtemps.'
4BsECMSPLUS </div>
4BsECMSPLUS <div class="swiper-pagination"></div>
4BsECMSPLUS </div>
4BsECMSPLUS </div>
4BsECMSPLUS </div>
4BsECMSPLUS <div class="col-md-6 col-lg-6 col-sm-12 mb-6" data-aos="fade-left" data-aos-delay="400">
4BsECMSPLUS <div class="project-desc pt-10">
4BsECMSPLUS <h4 class="title mb-6">[!--title--]</h4><hr>
4BsECMSPLUS [!--intro--]
4BsECMSPLUS </div>
4BsECMSPLUS </div>
4BsECMSPLUS </div>
4BsECMSPLUS </div>
4BsECMSPLUS</div>');
4BsECMSPLUS4BsECMSPLUS4BsECMSPLUS4BsECMSPLUS
免责/版权声明:
本篇文章给大家谈谈帝国cms 列表内容模板(list.var) 调用图集morepic内图片以及帝国CMS对应的知识,感谢你花时间阅读本站内容,希望对各位有所帮助,你也可以查看更多关于帝国CMS的信息。
1、所有来源标注为 ECMSPLUS/zwcms.com的内容版权均为本站所有,若您需要引用、转载,只需要注明来源及原文链接即可,如涉及大面积转载,请来信告知,获取授权。
2、本站所提供的文章资讯、软件资源、素材源码等内容均为作者提供、网友推荐、互联网整理而来(部分报媒/平媒内容转载自网络合作媒体),仅供学习参考,如有侵犯您的版权,请联系我们,本站将在三个工作日内改正。
3、若您的网站或机构从本站获取的一切资源进行商业使用,除来源为本站的资料需与本站协商外,其他资源请自行联系版权所有人。
4、 ECMSPLUS/zwcms.com不保证资源的准确性、安全性和完整性,请您在阅读、下载及使用过程中自行确认,本站亦不承担上述资源对您或您的网站造成的任何形式的损失或伤害
5、未经 ECMSPLUS/zwcms.com允许,不得盗链、盗用本站资源;不得复制或仿造本网站,不得在非 ECMSPLUS/zwcms.com所属的服务器上建立镜像, ECMSPLUS/zwcms.com对其自行开发的或和他人共同开发的所有内容、技术手段和服务拥有全部知识产权,任何人不得侵害或破坏,也不得擅自使用。
6、互联网的本质是自由与分享,我们真诚的希望,每一份有价值的正能量能够在互联网中自由传播,能够为每一个网站提供动力。