function getImgUrl($content){
$soContent=$content;
$soImages = '/<img.*\>/isU';
preg_match_all($soImages, $content, $thePics);
$pic_count = count($thePics[0]);
$rtn="[";
for($i=0;$i<$pic_count&&$i<3;$i++){//这里仅截取前三个,如果需要更多,请调整这里。
preg_match('|src="(.*)"|isU',$thePics[0][$i],$match);
$rtn.='{"url":"'.$match[1].'"},';
}
if($this->endWith($rtn,",")){
$rtn=substr($rtn, 0,strlen($rtn)-1);
}
$rtn.="]";
$rtn=str_replace('\\', '/', $rtn);
return $rtn;
}
返回结果格式为json,如果需要标准json格式,需要在$rtn外边再加一对中括号即可。