js教程

百度MIP改造常用正则表达式

我的站长站 2019-05-18 人阅读

正则表达式替换图片格式

function NewsTextReplace($add){
    $add['newstext'] = preg_replace('/<img.*?src="(.*?)".*?>/is', '<mip-img alt="" src="$1"></mip-img>', stripslashes($add['newstext']));
    $add['newstext'] = preg_replace('/<a.*?href="(.*?)".*?</a>/is', '<a data-type="mip" data-title="' . $add['title'] . '" href="$1"></a>', $add['newstext']);
    $add['newstext'] = addslashes($add['newstext']);
    return $add;
}

正则表达式替换链接格式

function get_img_thumb_url($data){ 
    $data = str_replace('<a', '<mip-link', $data);
    $data = preg_replace('/ target=".*?"/', '',$data);//移除target
    $data = preg_replace('/ style=".*?"/', '',$data);//移除style
    $data = preg_replace('/ class=".*?"/', '',$data);//移除class
    $data = str_replace('</a>', '</mip-link>', $data);
    return $data;  
}

正则表达式删除无用代码

function get_img_thumb_url($data){ 
    $data = str_replace('onclick=/"zoom(this, this.src, 0, 0, 0)/" ','',$data);
    $data = str_replace('class=/"zoom/"','',$data);
    $data = str_replace('onmouseover=/"img_onmouseoverfunc(this)/"','',$data);
    $data = str_replace('onload=/"thumbImg(this)/" ','',$data);
    $data = str_replace('border=/"0/"','',$data);
    $data = str_replace('alt=""','',$data);
    $data = str_replace('<br />','<br>',$data);
    return $data;  
}

百度MIP改造最难的就是正则表达式了,以上正则表达式基本够用百度MIP改造了,然后怎么用就看大家自己了。

相关推荐
  • 正则表达式
  • Regulex在线正则表达式可视化测试工具
    Regulex在线正则表达式可视化测试工具

    Regulex跟其他的正则表达式工具不同的是,他可以直接以图片的形式显示出正则表达式匹配的流程和结果,非常方便的帮助程序员正确的书写正则表达式规则。例如我们输入(d{100}|d{10})w{2}正则,可视化...

    在线工具 1266 4年前
  • 帝国CMS百度MIP改造newstext正则表达式

    本教程主要功能就是把编辑器内的img a标签等替换为mip标准格式1、打开/e/class/userfun.php添加处理函数:function NewsTextReplace($add){ $add[&#39;newstext&#39;] = preg_replace(&#39;/<img.*?src="(.*?)".*?>/is&#39;, &#39;<mip-img alt=""...

    帝国cms教程 222 5年前
  • 百度MIP改造常用正则表达式

    正则表达式替换图片格式function NewsTextReplace($add){ $add[&#39;newstext&#39;] = preg_replace(&#39;/<img.*?src="(.*?)".*?>/is&#39;, &#39;<mip-img alt="" src="$1"></mip-img>&#39;, stripslashes...

    js教程 131 5年前
最新更新
  • js返回上一页、刷新页面代码大全

    返回上一页代码:<a href="javascript:history.go(-1)">返回上一页</a>onclick返回上一页代码:<a href="javasc...

    js教程 2天前
  • js语言!=与!==的区别

    != (不等于)!= 是松散的不等于运算符。它在比较两个值时,会先进行类型转换(type coercion),然后再比较值是否不...

    js教程 6天前
  • JS防止网站被扒的解决方法

    这个代码能够直接保护整个站,而不再是单个页面,直接把代码放到自己的网站上,如果是博客建议放到header.php头部...

    js教程 3周前
  • Hexo插件开发实战教程

    Hexo的插件嵌入有两种方式,一种是通过脚本(Scripts)的方式引入,一种是通过插件(Packages)的方式将自定义的插件内...

    js教程 1个月前
  • JavaScript定时删除指定元素方法

    JavaScript定时删除指定元素一般用到自动隐藏的效果功能上面,主要用到了JS的setTimeout语法。下面是一个定时...

    js教程 1个月前