1. function preg_img($img) {
  2. return preg_replace( '/(<img.*?)(style=.+?[\'|"])|((width)=[\'"]+[0-9]+[\'"]+)|((height)=[\'"]+[0-9]+[\'"]+)/i', '$1' , $img);
  3. }
  4. echo preg_img('<img src="1.png" width="500" height="300" style="float:left"');

上面的代码连iframe都会清除,如果只想清除img的话,可以使用下面这个

  1. function preg_img($str){
  2. //去掉图片宽度
  3. $search = '/(<img.*?)width=(["\'])?.*?(?(2)\2|\s)([^>]+>).*?>/is';
  4. //去掉图片高度
  5. $search1 = '/(<img.*?)height=(["\'])?.*?(?(2)\2|\s)([^>]+>).*?>/is';
  6. $search2 = '/(<img.*?)style=(["\'])?.*?(?(2)\2|\s)([^>]+>).*?>/is';
  7. $content = preg_replace($search,'$1$3',$str);
  8. $content = preg_replace($search1,'$1$3',$content);
  9. $content = preg_replace($search2,'$1$3',$content);
  10. return $content;
  11. }