首页 > 教程 > 前端技术 > 二开教程

    收藏

    添加供应内容过滤手机号
    小黑2023-05-20二开教程14℃
    广告
    核心提示:添加供应内容过滤手机号,注意只能过滤手机号(其他模块也是一样的操作)在module/sell.class.php//这里是新发布信息function add($post) {global $MOD;$post = $this-set($post);下面加一行$post['content'] = preg_replace("/1([0-9]{10})/", "", $post['content']); //过滤手机号//这里是修

    添加供应内容过滤手机号,注意只能过滤手机号(其他模块也是一样的操作)

    在module/sell.class.php

    //这里是新发布信息
    function add($post) {
        global $MOD;
    	$post = $this->set($post);
    
    下面加一行
    
    $post['content'] = preg_replace("/1([0-9]{10})/", "", $post['content']); //过滤手机号
    
    
    //这里是修改信息
    function edit($post) {
    	$this->delete($this->itemid, false);
    	$post = $this->set($post);
    
    下面加一行
    
    $post['content'] = preg_replace("/1([0-9]{10})/", "", $post['content']); //过滤手机号
    

    如果要过滤所有的数字就是

    $post['content'] = preg_replace("/:([0-9]{6}),/", "***", $post['content']); 

 
  • 文本链接:https://mbtxw.com/Course/show.php?itemid=164
  • 文章来源:模板模板
  • 版权声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。

更多>同类教程

0相关评论

    QQ交流群

    模板天下网QQ群

  • 欢迎DT爱好者加群学习交流:68503649

    联系关注

  • MBTXW.COM腾讯微博
  • 536205792QQ号
  • 68503649加QQ群
  • 536205792@qq.com客服邮箱