帝国cms (php) 批量提取内容正文图片,即:集中显示内容页图片
2018-12-04 站长 站长日志
有时候需要提取正文的图片,下面这个函数写入“/e/class/userfun.php”里面
//提取内容图片
function getcontentpic($content)
{
preg_match_all("/<img(.*?)>/", $content, $match);
return $match[0];
}
调用方法:
//提取内容图片
<?=getcontentpic($navinfo['newstext'])?>