名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。
大部分手机站都是自适应的,这样图片就不能有宽高限制,咱们添加文章图片时很多时候都会有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);//手机版图片使用绝对路径 |
上述相关具体代码如下表示手机为二级域名时候,将附件地址改为绝对地址,以防止图片打不开的情况出现。
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。dedecms网站程序织梦程序图片(仅网址)自定义字段远程图片保存只有数字的解决相关具体操作方法