联系官方销售客服
1835022288
028-61286886
手机端绑定的二级域名,内容页调用 图片出错,主要是路径问题,怎么把内容调用的图片路径改成绝对路径,
在手机端模板中正则怎么写啊 就是在{$content } 中将img的src中的手机端域名换成pc端的路径(采集或者别的系统转过来的在不批量替换数据的情况下要用到这样子)
在dede中是这样子的
{dede:field name='body' runphp='yes'}
global $cfg_basehost;
$body = preg_replace('/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i',"<img src=\"$cfg_basehost$1\">", @me);
@me=$body;
{/dede:field}
放在{$content } 中怎么写啊 谢谢
{dede:field name='body' runphp='yes'}
global $cfg_basehost;
$body = preg_replace('/<img.*?src=[\"|\']?(.*?)[\"|\']?\s.*?>/i',"<img src=\"$cfg_basehost$1\">", @me);
@me=$body;
{/dede:field}这个的作用是做什么的