PHP替换字符串中的图像

时间:2018-06-24 16:06:49

标签: php replace preg-match

我有一些代码可以从$string获取所有html IMG代码实例。

preg_match_all('/<img[^>]+>/i',$string, $result);
foreach ($result as $img) {
    if ($img) { echo $img[0]; }
    }

但是我想使用每个图像(检查其尺寸等),然后将其替换为原始的$string

如何将其插入/替换回原来的位置?

0 个答案:

没有答案