🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
>[danger] 正则匹配 img标签及src属性值 ```php $content = file_get_contents('1.html'); preg_match_all('/<img(.*?)src=\"(.*?)\"(.*?)>/is', $content, $matches); ``` ``` matches[0] //整个img标签 matches[2] //图片的url ``` >[danger] 修饰符: + i   忽略大小写 + s  单行文本模式