标签: php replace preg-match
我有一些代码可以从$string获取所有html IMG代码实例。
$string
preg_match_all('/<img[^>]+>/i',$string, $result); foreach ($result as $img) { if ($img) { echo $img[0]; } }
但是我想使用每个图像(检查其尺寸等),然后将其替换为原始的$string
如何将其插入/替换回原来的位置?