php 替换敏感字符串的类(附源码)

php中文网
发布: 2016-07-25 08:55:24
原创
1218人浏览过
  1. /** string filter class
  2. * Date: 2013-01-09
  3. * Author: fdipzone
  4. * Ver: v1.0
  5. * Edit: bbs.it-home.org
  6. * Func:
  7. * public replace 替换非法字符
  8. * public check 检查是否含有非法字符
  9. * private protect_white_list 保护白名单
  10. * private resume_white_list 还原白名单
  11. * private getval 白名单 key转为value
  12. */
  13. class StrFilter{ // class start
  14. private $_white_list = array();
  15. private $_black_list = array();
  16. private $_replacement = '*';
  17. private $_LTAG = '[[##';
  18. private $_RTAG = '##]]';
  19. /**
  20. * @param Array $white_list
  21. * @param Array $black_list
  22. * @param String $replacement
  23. */
  24. public function __construct($white_list=array(), $black_list=array(), $replacement='*'){
  25. $this->_white_list = $white_list;
  26. $this->_black_list = $black_list;
  27. $this->_replacement = $replacement;
  28. }
  29. /** 替换非法字符
  30. * @param String $content 要替換的字符串
  31. * @return String 替換后的字符串
  32. */
  33. public function replace($content){
  34. if(!isset($content) || $content==''){
  35. return '';
  36. }
  37. // protect white list
  38. $content = $this->protect_white_list($content);
  39. // replace black list
  40. if($this->_black_list){
  41. foreach($this->_black_list as $val){
  42. $content = str_replace($val, $this->_replacement, $content);
  43. }
  44. }
  45. // resume white list
  46. $content = $this->resume_white_list($content);
  47. return $content;
  48. }
  49. /** 检查是否含有非法自符
  50. * @param String $content 字符串
  51. * @return boolean
  52. */
  53. public function check($content){
  54. if(!isset($content) || $content==''){
  55. return true;
  56. }
  57. // protect white list
  58. $content = $this->protect_white_list($content);
  59. // check
  60. if($this->_black_list){
  61. foreach($this->_black_list as $val){
  62. if(strstr($content, $val)!=''){
  63. return false;
  64. }
  65. }
  66. }
  67. return true;
  68. }
  69. /** 保护白名单
  70. * @param String $content 字符串
  71. * @return String
  72. */
  73. private function protect_white_list($content){
  74. if($this->_white_list){
  75. foreach($this->_white_list as $key=>$val){
  76. $content = str_replace($val, $this->_LTAG.$key.$this->_RTAG, $content);
  77. }
  78. }
  79. return $content;
  80. }
  81. /** 还原白名单
  82. * @param String $content
  83. * @return String
  84. */
  85. private function resume_white_list($content){
  86. if($this->_white_list){
  87. $content = preg_replace_callback("/\[\[##(.*?)##\]\].*?/si", array($this, 'getval'), $content);
  88. }
  89. return $content;
  90. }
  91. /** 白名单 key还原为value
  92. * @param Array $matches 匹配white_list的key
  93. * @return String white_list val
  94. */
  95. private function getval($matches){
  96. return isset($this->_white_list[$matches[1]])? $this->_white_list[$matches[1]] : ''; // key->val
  97. }
  98. } // class end
  99. ?>
复制代码

2,演示示例 demo.php

  1. header("content-type:text/html;charset=utf8");
  2. require("StrFilter.class.php");
  3. $white = array('屌丝', '曹操');
  4. $black = array('屌', '操');
  5. $content = "我操,曹操你是屌丝,我屌你啊";
  6. $obj = new StrFilter($white, $black);
  7. echo $obj->replace($content);
  8. ?>
复制代码

附,php 替换敏感字符串的类源码下载地址。

灵感PPT
灵感PPT

AI灵感PPT - 免费一键PPT生成工具

灵感PPT 32
查看详情 灵感PPT


PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号