帝国cms默许图片集切割大图和小图方法案列如下,自行对照修正
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/> </head> <body> <?php $morepic=$navinfor['morepic']; $mpr=explode(egetzy('rn'),$morepic); $mpcount=count($mpr); for($mpi=0;$mpi<$mpcount;$mpi++) {$mp=explode('::::::',$mpr[$mpi]); if(empty($mp[1])) { $mp[1]=$mp[0]; } //echo"小图地址:<imgsrc='".$mp[0]."'/><br/>大图地址:<imgsrc='".$mp[1]."'/><br/>"; $picname=htmlspecialchars($mp[2]); $showsmphoto.="<li><ahref='#'title='".$picname."'><imgsrc='".$mp[0]."'/></a></li>";//显现小图格局修正这儿 $showbigphoto.="<imgsrc='".$mp[1]."'alt='".$picname."'/>";//显现大图格局修正这儿 } ?> 输出大图: <?=$showbigphoto?> 输出小图:<ul> <?=$showsmphoto?> </ul> </body> </html>
声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!
原文地址:帝国cms默认图片集分割大图和小图发布于2022-06-10 07:43:32