我正在阅读 html 内容。有图像标签,例如
<img onclick="document.location='http://abc.com'" src="http://a.com/e.jpg" onload="javascript:if(this.width>250) this.width=250">
或者
<img src="http://a.com/e.jpg" onclick="document.location='http://abc.com'" onload="javascript:if(this.width>250) this.width=250" />
我试图重新格式化这个标签成为
<img src="http://a.com/e.jpg" />
但是我没有成功。到目前为止我尝试构建的代码就像
$image=preg_replace('/<img(.*?)(\/)?>/','',$image);
有人可以帮忙吗?