您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

dedecms首页和列表页怎么调用单个图片集里的多张图片示例

蔡农仲2023-09-28 11:41:39dedecms教程已有人查阅

导读调用函数如下图:其中请修改一下数据库的表名字。否则会调用空白。function Getimg($aid) { global $dsql; $imgu

调用函数如下图:其中请修改一下数据库的表名字。否则会调用空白。
function Getimg($aid)
{
global $dsql;
$imgurls = '';
$row =$dsql->getone( "Select imgurls From `food_addpinpai` where aid='$aid' ");
$imgurls= $row['imgurls'];
preg_match_all("/{dede:img (.*){\/dede:img/isU",$imgurls,$wordcount);
$count=count($wordcount[1]);
$dtp = new DedeTagParse();
$dtp->LoadSource($imgurls);
if(is_array($dtp->CTags))
{
$i=0;
foreach($dtp->CTags as $ctag)
{
if($i<$count){
if($ctag->GetName()=="img")
{
$bigimg = trim($ctag->GetInnerText());
if($ctag->GetAtt('ddimg') != $bigimg && $ctag->GetAtt('ddimg')!='')
{
$litimg = $ctag->GetAtt('ddimg');
}
$title=$ctag->GetAtt('text');
$imglist.='<li><a href="'.$bigimg.'" title="'.$title.'" target=_blank><img src="'.$bigimg.'" alt="'.$title.'" ></a></li>';
$i++;
}
}
}
}
return $imglist;
}
调用方式:
[field:idfunction="Getimg(@me)"/]

 

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签