php去除html代码中img图片标签宽高

分类栏目:destoon实战

131

function content_strip($content){ $content = preg_replace('/<img[^>]*src=[\'"]?([^>\'"\s]*)[\'"]?[^>]*>/ie',"wap_img('$1')",$content); return $content; } function wap_img($url){ $img='<img src="'http://www.dtmuban.com/course/.$url.'">'; return $img; }