织梦DEDECMS文章正文调用代码为{dede:field.body/},这样图片和文章都调用出来了。能不能分开调用呢?当然可以啦!调用 代码如下
内容文字
{dede:field.body runphp=yes}
$string = @me;
$result = preg_replace("/]+>/i",'',$string);
@me = $result;
{/dede:field.body}
内容图片
{dede:field.body runphp=yes}
$string = @me;
preg_match_all("/
]*)s*src=('|")([^'"]+)('|")/",$string,$matches);
$imgsrc_arr = array_unique($matches[3]);
foreach($imgsrc_arr as $imgsrc)
{
$result .= "
";
}
@me = $result;
{/dede:field.body}