码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2015-07-29 13:37:01      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

/**DEDECMS首页和列表页调用单个图片集里的多张图片 
function Getimg($aid,$imgwith=110,$imgheight=110,$num=0)  
{  
global $dsql;  
$imgurls = ‘‘;  
$row =$dsql->getone( "Select aid,imgurls From `js_addonimages` where aid=‘$aid‘ ");  
$id=$row[‘aid‘]; 
$imgurls= $row[‘imgurls‘];  
$dtp = new DedeTagParse(); 
$dtp->LoadSource($imgurls); 
if(is_array($dtp->CTags)) 
{ 
    $i=0; 
    foreach($dtp->CTags as $ctag) 
         { 
            if($i<$num){ 
                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 title="‘.$title.‘" href="/plus/view.php?aid=‘.$id.‘"><img src="‘.$bigimg.‘" width="‘.$imgwith.‘" height="‘.$imgheight.‘" alt="‘.$title.‘"></a></li>‘;  
                     $i++; 
                 } 
            } 
        } 
    } 
return $imglist;  
 
} 

 

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

标签:

原文地址:http://www.cnblogs.com/happig/p/4685465.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!