发布于 4年前

php使用正则表达式获取内容中所有图片url的方法

php使用正则表达式获取图片url的方法

public function matchImgs($content,$order='ALL'){
    $pattern = "/[img|IMG].*?src=['|\"](.*?(?:[.gif|.jpg]))['|\"].*?[\/]?>/";
    preg_match_all($pattern,$content,$match);
    return $match[1];
}
©2020 edoou.com   京ICP备16001874号-3