首页 > 教程 > 前端技术 > 二开教程

destoon获取内容详情中的前几张图片

发布:2022-09-24 来源:网络转载 浏览:57 次 评论:0
核心提示:在根目录自定义函数 api/extend.func.php 添加以下函数//获取资讯详细内容中的图片地址 并输出function contentxh_thumb($moduleid, $itemid, $nums = 0) {global $db, $DT, $DT_TIME;$thumbs = '';$table = get_table($moduleid,1);$r = $db-get_one("SELECT content FROM {$table} WHER&
在根目录自定义函数  api/extend.func.php  添加以下函数
//获取资讯详细内容中的图片地址 并输出
function contentxh_thumb($moduleid, $itemid, $nums = 0) {
    global $db, $DT, $DT_TIME;
    $thumbs = '';
    $table = get_table($moduleid,1);
    $r = $db->get_one("SELECT content FROM {$table} WHERE itemid='$itemid'");
    $content = $r['content'];
    if(!$content) return '';
    $ext = 'jpg|jpeg|png|bmp';
    if(!preg_match_all("/src=([\"|']?)([^ \"'>]+\.($ext))\\1/i", $content, $matches)) return '';
    $mnums = count($matches[2]);
    if($mnums>=$nums) $thumbs = array_slice($matches[2], 0, $nums);
    return $thumbs;
}
列表标签调取方法(loop列表)【其他页面使用记得把 $moduleid  改为正确的模块 id 值, 3为前3张 】
{if $lists}
    {loop $lists $i $t}
    {php $thumbs = contentxh_thumb($moduleid, $t[itemid], 3)}
    {if $thumbs}
        {loop $thumbs $j $t1}
            <img src="{$t1}" alt="">
        {/loop}
    {else}
        {if $t[thumb]}
            有图样式
        {else}
            没有图样式
        {/if}
    {/if}
    {/loop}
{else}
    本列表无信息
{/if}

 
  • 文本链接:https://mbtxw.com/Course/show.php?itemid=131
  • 文章来源:网络转载
  • 版权声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。
标签: 内容图片 内容
  • 我的领地
  • 文章86
  • 人气2
  • 收藏0
  • 粉丝 0