$content="<img src='' width='500' height='300'>
<img src='' width=\"500\" height=\"300\">
<img src='' width=500 height=300>
<img src='' WIDTH=500 Height=300>
";

function remove_img_attribute($html) {
$html = preg_replace('#(<img.+?)height=(["\']?)\d*\2(.*?/?>)#i', '$1$3', $html);
$html = preg_replace('#(<img.+?)width=(["\']?)\d*\2(.*?/?>)#i', '$1$3', $html);
return $html;
}

echo remove_img_attribute($content);

arrow
arrow
    全站熱搜

    stockwfj3 發表在 痞客邦 留言(0) 人氣()