编程语言
首页 > 编程语言> > php 正则获取文章中的图片路径

php 正则获取文章中的图片路径

作者:互联网

/**
 * 提取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();
}

标签:body,function,return,路径,正则,array,php,match
来源: https://www.cnblogs.com/sunr/p/16671435.html