美文网首页php社区
php匹配字符串中url链接+替换

php匹配字符串中url链接+替换

作者: jtw | 来源:发表于2020-07-23 10:41 被阅读0次
$pattern = '`.*?((http|https)://[\w#$&+,\/:;=?@.-]+)[^\w#$&+,\/:;=?@.-]*?`i';
    if (preg_match_all($pattern,$url_string,$matches)) {
        print_r($matches[1]);
    }

得到如下数组:


image.png

用 str_ireplace 批量替换字符串中的url:

        $info['content'] = str_ireplace($arr,$url,$info['content']);

相关文章

网友评论

    本文标题:php匹配字符串中url链接+替换

    本文链接:https://www.haomeiwen.com/subject/pspclktx.html