首页 > CMS > 织梦DEDE > 正文

dedecms织梦文章内容提取图片(多张)自定义输出

2024-07-12 09:02:38
字体:
来源:转载
供稿:网友

织梦里图集模型有批量上传图片功能,有时我们要做商品图库需要用到图集,但是用的商品模型里又没有自定义字段可以添加图集那样的按钮,但是我们可以用内容编辑器批量上传图片,只要在模板中调用所有图片即可,省下了在其他模型添加图集上传功能。

在 /include/extend.func.php 最下面添加个方法

function getbodypics($string, $num){	preg_match_all("/<img([^>]*)/s*src=('|/")([^'/"]+)('|/")/",$string,$matches);	$imgsrc_arr = array_unique($matches[3]);	$count = count($imgsrc_arr);	$i = 0;	foreach($imgsrc_arr as $imgsrc)	{		if($i == $num) break;		$result .= "<img src=/"$imgsrc/"/>";		$i++;	}	return $result;}

首页/列表模板标签

[field:mypic2 function=getbodypics(@me,3)/]

内容模板标签

{dede:field.mypic2 function=getbodypics(@me,3)/}

mypic2 是字段名

3 是输出几张图片

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表