东方星雨

简单网络

一个爱好网络的80后男站长。

关注我东方星雨个人微信号:476847113

您现在的位置是:首页 > 站长日志

帝国cms (php) 批量提取内容正文图片,即:集中显示内容页图片

2018-12-04 站长 站长日志

有时候需要提取正文的图片,下面这个函数写入“/e/class/userfun.php”里面

//提取内容图片
function getcontentpic($content)
{
  preg_match_all("/<img(.*?)>/", $content, $match);
  return $match[0];
}

调用方法:

//提取内容图片
<?=getcontentpic($navinfo['newstext'])?>

文章评论