在根目录自定义函数 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}