联系官方销售客服

1835022288

028-61286886

POSCMS 版主:POSCMS负责人
高手进正文内容问题求解
类型:POSCMS 更新时间:2020-11-26 15:23:38

对网站进行了MIP的改造,mip内容页正文里的图片必须是<mip-img src="/data/upload/20180504/5aebc0edccc83.png"></mip-img> 这种格式的,并且正文里的P标签和<span>'标签中禁止使用'style'属性,我下面的代码可以把正文里的图片地址替换成MIP要求的格式,但是正文里的style属性却无法去掉有没有高手指点下怎么去掉P标签和<span style="font-family: 微软雅黑,Microsoft YaHei; line-height: 130%;">什么是AR试妆?</span>这样的属性


<?=str_replace(array('<img','<IMG'),'<mip-img',preg_replace("/\\\style=.*?>/si",">",$content));?>

这个代码不能去掉'style'属性,求指导

回帖
  • 官方工程师
    #1楼    官方工程师
    2018-11-06 08:46:11
    0
    <?php $content = preg_replace('/style=".*?"/i', '', $content);?>
    <?=str_replace(array('<img','<IMG'),'<mip-img',preg_replace("/\\\style=.*?>/si",">",$content));?>
    满意答案
  • 新海诚
    #2楼    新海诚
    2018-11-06 08:53:26
    0
    百度上很多的,html转换mip函数,多的很
  • 华仔
    #3楼    华仔
    2020-11-26 15:23:38
    Chrome 0
    @官方工程师:非常感谢