以下代码是 从正文中提取第一张图片作做略图用 如果没有匹配到 则取随机图片
$pattern="/<img.*?src=['\"](.*?)['\"].*?>/";
$content = $cmslist->Content;
preg_match_all($pattern,$content,$matchContent);
if(isset($matchContent[1][0])){
$src=$matchContent[1][0];
}else{
$src=$zbp->host.'zb_users/theme/'.$zbp->theme."/img/suiji/".mt_rand(1,20).".jpg";
}