-
- /**文字列フィルタークラス
- * 日付: 2013-01-09
- * 著者: fdipzone
- * バージョン: v1.0
- * 編集: bbs.it-home.org
- * Func:
- * public replace 不正な文字を置換します
- * public check不正な文字が含まれているかどうかを確認します
- * private protected_white_list ホワイト リストを保護します
- * private raise_white_list ホワイト リストを復元します
- * private getval ホワイト リストのキーを値に設定します
- */
- class StrFilter{ // クラス開始
-
- private $_white_list = array();
- プライベート $_black_list = array();
- プライベート $_replacement = '*';
- プライベート $_LTAG = '[[##';
- プライベート $_RTAG = '##]]';
-
- /**
- * @param 配列 $white_list
- * @param 配列 $black_list
- * @param 文字列 $replacement
- */
- パブリック関数 __construct($white_list=array(), $black_list=array(), $replacement='*'){
- $this->_white_list = $white_list;
- $this->_black_list = $black_list;
- $this->_replacement = $replacement;
- }
-
- /**不正な文字を置換します
- * @param String $content 置換される文字列
- * @return String 置換される文字列
- */
- public function replace($content){
-
- if(!isset($content) || $content==''){
- return '';
- }
-
- // ホワイトリストを保護する
- $content = $this->protect_white_list($content);
-
- // ブラックリストを置換します
- if($this->_black_list){
- foreach($this->_black_list as $val){
- $content = str_replace($val, $this->_replacement, $content );
- }
- }
-
- // ホワイトリストを再開
- $content = $this->resume_white_list($content);
-
- $content を返します。
- }
-
- /**不正な自己文字が含まれていないか確認します
- * @param String $content string
- * @return boolean
- */
- public function check($content){
-
- if(!isset($content) || $content==''){
- return true;
- }
-
- // ホワイトリストを保護する
- $content = $this->protect_white_list($content);
-
- //
- if($this->_black_list){
- foreach($this->_black_list as $val){
- if(strstr($content, $val)!=''){
- return false ;
- }
- }
- }
- true を返します。
- }
-
- /**保護ホワイトリスト
- * @param String $content 文字列
- * @return String
- */
- プライベート関数protect_white_list($content){
- if($this->_white_list){
- foreach($this->_white_list as $key=>$val) {
- $content = str_replace($val, $this->_LTAG.$key.$this->_RTAG, $content);
- }
- }
- $content を返します。
- }
-
- /**ホワイトリストを復元します
- * @param String $content
- * @return String
- */
- プライベート関数resume_white_list($content){
- if($this->_white_list){
- $content = preg_replace_callback("/[[##(.*?)# #]].*?/si", array($this, 'getval'), $content);
- }
- $content を返します。
- }
- /**ホワイトリストのキーが値に復元されます
- * @param Array $matches は、white_list のキーと一致します
- * @return String White_list val
- */
- プライベート関数 getval($matches){
- return isset($this->_white_list[$matches[1]])? $this->_white_list[$matches[1]] : ''; // key->val
- }
-
- } // クラス終了
-
- ?>
复制代码
2、演示例demo.php
-
- header("content-type:text/html;charset=utf8");
-
- require("StrFilter.class.php");
-
- $white = array('屌丝', '曹操');
- $black = array('屌', '操');
-
- $content = "我操,曹操你是屌丝,我屌你啊";
-
- $obj = 新しい StrFilter($white, $black);
- echo $obj->replace($content);
- ?>
卷制コード
附、php代替敏感文字列の種類ソースコード下方地址。
|