码迷,mamicode.com
首页 > 移动开发 > 详细

织梦手机站去除文章内容中图片的宽高达到自适应

时间:2018-11-04 01:41:08      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:电脑   img   search   手机版   run   body   文章   load   dede   

大部分手机站都是自适应的,这样图片就不能有宽高限制,我们添加文章图片时很多时候都会有width height style这些属性在里面,在手机站上要把它们清除,又不能影响电脑站的,不修改程序内核文件,我们可以在手机版内容页模板里,

把手机站内容页模板把调用文章内容的标签

{dede:field.body/}

改成

{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:\s{0,}\d+px;([^"]*?.*?>)#i‘;
$search3 = ‘#(<img.*?style=".*?)height:\s{0,}\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 = str_replace(‘/uploads/allimg/‘, $cfg_basehost.‘/uploads/allimg/‘, $content);
{/dede:field.body}

织梦手机站去除文章内容中图片的宽高达到自适应

标签:电脑   img   search   手机版   run   body   文章   load   dede   

原文地址:https://www.cnblogs.com/dedevip/p/9902792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!