读取文本内容所有图片地址

admin 2024-05-24 241 阅读 0评论
/**
* @param string $text  文本内容
* @return mixed
* 返回匹配的图片地址
*/
function getImgList($text){
   $url = parse_url($text);
   if(isset($url['scheme']) && isset($url['host'])){
       $page_html = file_get_contents($text);
   }else{
       $page_html = $text;
   }
   preg_match_all('/<img[^>]*src=[\'"]?([^>\'"\s]*)[\'"]?[^>]*>/Ssi', $page_html, $out);
   return $out;
}


发表评论

快捷回复: 表情:
Addoil Applause Badlaugh Bomb Coffee Fabulous Facepalm Feces Frown Heyha Insidious KeepFighting NoProb PigHead Shocked Sinistersmile Slap Social Sweat Tolaugh Watermelon Witty Wow Yeah Yellowdog
提交
评论列表 (有 0 条评论, 241人围观)