织梦dedecms获取图片集多张图片及注释的方法(循环输出)

实现的方法一共有两个步骤:

1、在/include/common.func.php 里加上方法 //循环输出多张图片function
function Getimgs($aid, $imgwith = 300, $imgheight = 270, $num = 0, $style = ‘’){
global $dsql;
$imgurls = ‘’;
$row = d s q l − > g e t o n e ( " S e l e c t i m g u r l s F r o m ‘ d e d e a d d o n i m a g e s ‘ w h e r e a i d = ′ dsql -> getone("Select imgurls From`dede_addonimages` where aid=' dsql>getone("SelectimgurlsFromdedeaddonimageswhereaid=aid’"); //
$imgurls = $row[‘imgurls’];
preg_match_all("/{dede:img (.)}(.){/dede:img/isU", $imgurls, $wordcount);
c o u n t = c o u n t ( count = count( count=count(wordcount[2]);
if ($num > $count || $num == 0){
$num = $count;
}

for($i = 0;$i < $num;$i++){
    if($style == 'li'){
        $imglist .= "<li><ahref=#" . $i . "><imgsrc=". trim($wordcount[2][$i]) . " width=" . $imgwith . " height=" . $imgheight . "></li></a>";
    }else{
        $imglist .= "<img src= " . trim($wordcount[2][$i]) . " width=" . $imgwith . "height=" . $imgheight . ">";
    }
}
 return $imglist;
 }

2、在模板里调用方法{dede:field.id function=“Getimgs(@me,400,400,10)” /}


注释:<img src= " . trim($wordcount[2][$i]) . " width=" . $imgwith . "height=" . $imgheight . ">"是调取出来的格式,可根据自己需要的样式进行定义,比如加个li或者 添加class等等,这里就不多讲了。

原文出自

[网站模板之家](http://www.66hyym.com)

 

 

希望这篇文章对大家有帮助,如果有错误,欢迎大家多多定评指出噢。交流才会进步!

 


以下方法是调取图片集多张图片注释的方法,操作类似。

1,在/include/common.func.php 里加上

//循环输出多张图片注释
function Getimgnote($aid, $num = 0){
    global $dsql;
    $imgurls = '';
     $row = $dsql -> getone("Select imgurls ` where aid='$aid'"); //
     $imgurls = $row['imgurls'];
     preg_match_all("|text='(.*)' width|U", $imgurls, $wordcount);
     $count = count($wordcount[1]);
     if ($num > $count || $num == 0){
        $num = $count;
    }
    for($i = 0;$i < $num;$i++){
        if($style == 'li'){
            $imglist .= "<li><ahref=#" . $i . "><imgsrc=". trim($wordcount[1][$i]) . " width=" . $imgwith . " height=" . $imgheight . "></li></a>";
        }else{
            $imglist .= "<div class=\"gr\">". trim($wordcount[1][$i]) ."</div>"; 
        }
    }
     return $imglist;
     } 

2,

2、在模板里调用方法{dede:field.id function="Getimgnote(@me,10)" /}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值