PHP正则替换HTML代码中的所有图片链接地址

1、htmlspecialchars_decode
PHP正则替换HTML代码中的所有图片链接地址_第1张图片

2、preg_replace,参数1是搜索模式(正则),参数2是用来替换匹配到的数据,参数3是原文本。

3、替换链接格式,也就是参数2根据自己实际情况拼接

/**
     * 处理简介中的img链接
     *
     * @param $description
     * @return string|string[]|null
     */
    public function handleDescriptionHtml($description)
    {
        $description = htmlspecialchars_decode($description);
        $pregRule = '//i';
        $description = preg_replace($pregRule, '.config('shopify.img_root') . '${1}" />', $description);

        return $description;
    }

你可能感兴趣的:(PHP)