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

添加供应内容过滤手机号

发布:2023-05-20 作者:小黑 浏览:58 次 评论:0
核心提示:添加供应内容过滤手机号,注意只能过滤手机号(其他模块也是一样的操作)在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
  • 文章来源:模板模板
  • 版权声明:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。
  • 我的领地
  • 文章86
  • 人气1
  • 收藏0
  • 粉丝 0