/**
* 提取body中的img-url
* @param string $body
* @return array 路径数组
*/
function getBodyImgs($body=''){
preg_match_all("/<img([^>]*)/s*src=('|/")([^'/"]+)('|/")/i",$body,$match);
return is_array($match[3])?$match[3]:array();
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/288389.html