在帝國WAP模版的show.temp.php文件里面,輸出新聞正文的標簽為
<?=DoWapRepNewstext($r[newstext])?>
想把把里面圖片的style 尺寸標簽給過濾掉,不然手機瀏覽圖片寬與高嚴重比率失真。
下面提供帝國wap內容模板里過濾掉圖片尺寸的方法
<?
$xstyle=DoWapRepNewstext($r[newstext]);
$xstyle=preg_replace('/style=.+?['|"]/i','',$xstyle);
echo $xstyle;
?>