大部分手機站都是自適應的,這樣圖片就不能有寬高限制,我們添加文章圖片時很多時候都會有width height style,在手機站上要把它們清除,又不能影響電腦站的。
{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} |
其中
@me = str_replace('/uploads/allimg/', $cfg_basehost.'/uploads/allimg/', $content);//手機版圖片使用絕對路徑 |
上述代碼表示手機為二級域名時候,將附件地址改為絕對地址,以防止圖片打不開的情況出現。
新聞熱點
疑難解答