DEDECMS首页和列表页调用单个图片集里的多张图片

人生坎坎坷坷,跌跌撞撞那是在所难免。但是,不论跌了多少次,你都要坚强地再次站起来。再试一次,成功一定属于你!
调用函数如下图:其中请修改一下数据库的表名字。否则会调用空白。


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 rel="nofollow noopener noreferrer" href="'.$bigimg.'" title="'.$title.'" target=_blank><img src="'.$bigimg.'" alt="'.$title.'" ></a></li>';  
                     $i++; 
                 } 
            } 
        } 
    } 
return $imglist;  


调用方式:

[field:id function="Getimg(@me)" /] 


到此这篇关于DEDECMS首页和列表页调用单个图片集里的多张图片就介绍到这了。一个人的性格决定他的机遇。如果你喜欢保持你的性格,那么,你就无权拒绝你的机遇。更多相关DEDECMS首页和列表页调用单个图片集里的多张图片内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: 多张 DEDECMS