大部分手機站都是自適應的,這樣圖片就不能有寬高限制,我們添加文章圖片時很多時候都會有width height style,在手機站上要把它們清除,又不能影響電腦站的。
在內容頁模板里,用以下標簽替換內容標簽。
| 										1 										2 										3 										4 										5 										6 										7 										8 										9 										10 										11 										12 										13 										14 | 											{dede:field.body runphp=yes} 											global $cfg_basehost; 											$str = @me; 											$search = '/(<img.*?)width=(["/'])?.*?(?(2)/2|/s)([^>]+>)/is'; 											$search1 = '/(<img.*?)height=(["/'])?.*?(?(2)/2|/s)([^>]+>)/is'; 											$search2 = '#(<img.*?style=".*?)width:/d+px;([^"]*?.*?>)#i'; 											$search3 = '#(<img.*?style=".*?)height:/d+px;([^"]*?.*?>)#i'; 											$content = preg_replace($search,'$1$3',$str); 											$content = preg_replace($search1,'$1$3',$content); 											$content = preg_replace($search2,'$1$2',$content); 											$content = preg_replace($search3,'$1$2',$content); 											@me = $content; 											//@me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);//手機版圖片使用絕對路徑 											{/dede:field.body} | 




















