我必须更改每个 php 的图像标签...
这是源字符串...
'picture number is <img src=get_blob.php?id=77 border=0> howto use'
结果应该是这样的
'picture number is #77# howto use'
我已经测试了很多,但我只得到图像的数量......这是我最后一次测试......
$content = 'picture number is <img src=get_blob.php?id=77 border=0> howto use';
$content = preg_replace('|\<img src=get_blob.php\?id=(\d+)+( border\=0\>)|e', '$1', $content);
现在$content
是77
我希望有一个人可以帮助我