php字元過濾方法

2022-09-23 23:30:17 字數 625 閱讀 7243

/**

* 字元過濾

* $santype 1 : 剝去 html、xml 以及 php 的標籤,

*    2 : 剝去 html、xml 以及 php 的標籤,字元轉換為 html 實體 , 編碼雙引號和單引號

*    3 : 剝去 html、xml 以及 php 的標籤,在指定的預定義字元前新增反斜槓    單引號 (') 雙引號 (") 反斜槓 (\) null

*    4 : 用於清理從資料庫或 html 表單中取回的資料 (剝去 html、xml 以及 php 的標籤)

*    6 : 在指定的預定義字元前新增反斜槓    單引號 (') 雙引號 (") 反斜槓 (\) null

*  * */

function sanitize($var, $santype = 1, $allowable_tags = '')

elseif ($santype == 2)

elseif ($santype == 3)

elseif ($santype == 4)

elseif ($santype == 5)

elseif ($santype == 6 )

}  摘自 adamboy

php 過濾特殊字元函式

1.過濾html str htmlspecialchars decode str str preg replace str 2.htmlspecialchars 函式把一些預定義的字元轉換為 html 實體。3.strip tags 函式剝去字串中的 html xml 以及 php 的標籤。4.ch...

php過濾字串

addslashes stripslashes 對資料庫教程操作時,轉義特殊字元 定義 addslashes 函式在指定的預定義字元前新增反斜槓。語法 addslashes string chop 除去字串右邊空格 trim 除去字串中所有空格 ltrim 除去字串左邊空格 htmlspecialc...

php敏感字串過濾 PHP實現敏感詞過濾

1 敏感詞過濾方法 todo 敏感詞過濾,返回結果 param array list 定義敏感詞一維陣列 param string string 要過濾的內容 return string log 處理結果 function sensitive list,string if count 0 else ...