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();
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/288389.html

(0)
上一篇 2022年9月9日
下一篇 2022年9月9日

相关推荐

发表回复

登录后才能评论