添加供应内容过滤手机号 在sell.class.php添加 function add($post) { $post['content'] = preg_replace("/1([0-9]{10})/","",$post['content']); ...
分类:
移动开发 时间:
2018-12-10 11:50:43
阅读次数:
190
public function contents($content) { $content = preg_replace('/<img\s.*?src="(.*?)"\/>/','{[src="$1"{[',$content);//匹配图片 $content = preg_replace('/<if ...
分类:
其他好文 时间:
2018-12-06 14:35:15
阅读次数:
144
function DeleteHtml(){ //清除空格和换行 $str = trim($str); //清除字符串两边的空格 $str = strip_tags($str,""); //利用php自带的函数清除html格式 $str = preg_replace("/\t/","",$str); ...
分类:
Web程序 时间:
2018-12-06 14:18:50
阅读次数:
202
$test=$_POST["test"]; $test= preg_replace("/(\n)|(\s)|(\t)|(\')|(')|(,)/" ,',' ,$test); $test = explode("," ,$test); ...
分类:
Web程序 时间:
2018-10-23 10:59:09
阅读次数:
144
$postData['QuanTopic']['content'] = strip_tags($postData['QuanTopic']['content']); //去除字符串中的html的标签$postData['QuanTopic']['content'] = preg_replace('/ ...
分类:
其他好文 时间:
2018-09-12 11:14:11
阅读次数:
230
Part 1 前言 Part 2 免杀 执行代码 eval 或 preg_replace的/e修饰符来执行大马代码。 编码 如果直接去执行代码,是过不了waf的,我们一般需要将大马源码进行编码。 eval_gzinflate_base64类型加密与解密: http://www.zhuisu.net/ ...
分类:
Web程序 时间:
2018-07-27 13:13:58
阅读次数:
576
strtr(string, from, to): 逐个字符开始替换,以from跟to中长度较较短的一个为准,例如: strtr("aidengni","ai","b") 只替换原始字符串中出现的a 输出:bidengni strtr("aidengni","a","bu") 只替换原始字符串中出现的 ...
分类:
其他好文 时间:
2018-07-15 16:16:10
阅读次数:
184
preg_match()字符串匹配查找 preg_replace()字符串替换 preg_split()字符串分割 preg_grep()可以根据条件查找指定数组 D:\phpstudy\PHPTutorial\WWW\wenzhang1 https://www.cnblogs.com/longda ...
分类:
Web程序 时间:
2018-06-15 21:45:28
阅读次数:
162
来源:歪麦博客 https://www.awaimai.com/1050.html 1 字符串 1.1 少用正则表达式 能用PHP内部字符串操作函数的情况下,尽量用他们,不要用正则表达式, 因为其效率高于正则。 没得说,正则最耗性能。 str_replace函数要比preg_replace快得多,s ...
分类:
Web程序 时间:
2018-06-04 16:48:19
阅读次数:
222
正则表达式 正则表达式是一种字符串搜索工具和匹配工具 Php常用的正则表达式函数如下: Preg_match($pattern,$subject) 表单验证等 Preg_match_all($pattern,$subject,array&$matches) Preg_replace($pattern ...
分类:
Web程序 时间:
2018-06-01 22:12:46
阅读次数:
231