织梦DEDECMS文章内容body图文分离调用代码

减少蜗居时间,亲近大自然。责任是从现在开始就要承担的,父母不再年轻,能回报的时候及时回报,不要总觉得时间还很多,岁月不等人。

织梦DEDECMS文章正文调用代码为{dede:field.body/},这样图片和文章都调用出来了。能不能分开调用呢?当然可以啦!调用 代码如下

内容文字

<div>
{dede:field.body runphp=yes}
$string = @me;
$result = preg_replace("/<s{0,}img[^>]+>/i",'',$string);
@me = $result;
{/dede:field.body}
</div>

内容图片

<div>
{dede:field.body runphp=yes}
$string = @me;
preg_match_all("/<img([^>]*)s*src=('|")([^'"]+)('|")/",$string,$matches);
$imgsrc_arr = array_unique($matches[3]);
foreach($imgsrc_arr as $imgsrc)
{
$result .= "<li><img class="img" src="$imgsrc"></li> ";
}
@me = $result;
{/dede:field.body}
</div>

到此这篇关于织梦DEDECMS文章内容body图文分离调用代码就介绍到这了。钱不是目标,不是结果,也不是消费品,而是成就事业的工具。更多相关织梦DEDECMS文章内容body图文分离调用代码内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!

标签: 织梦 DEDECMS