php正则去掉<img>标签里的height和width,分享给大家,希望对大家有所帮助。
<?php
$str='<img height=600 src="1296146383097_000.jpg" width=570 border=0 />';
$exp=Array("/height=.{0,5}/s/i","/width=.{0,5}/s/i");
$exp_o=Array('','');
echo preg_replace($exp,$exp_o,$str);
新闻热点
疑难解答