php一些过滤字符串

addslashes()    在预定义字符前添加反斜杠的字符串。(单引号 双引号 反斜杠  null)
stripslashes()  删除由 addslashes() 函数添加的反斜杠。
explode()   把字符串打散为数组。
implode()   返回由数组元素组合成的字符串。
html_entity_decode()    把 HTML 实体转换为字符。
htmlentities()  把字符转换为 HTML 实体。
htmlspecialchars_decode()   把一些预定义的 HTML 实体转换为字符。
htmlspecialchars()  把一些预定义的字符转换为 HTML 实体。
nl2br() 在字符串中的每个新行(\n)之前插入 HTML 换行符(
) str_replace(find,replace,string,count) 函数以其他字符替换字符串中的一些字符(区分大小写)。 strip_tags() 剥去字符串中的 HTML 标签 mb_substr() 函式基本語法

string mb_substr ( string $str , int $start , int $length , string $encoding )
mb_strlen()
string $str 是要判斷的字串,int $start 是初始的字串位置,請用整數,int $length 是要取得的字串結束位置,string $encoding 就是放置你要判斷的編碼啦!例如萬國碼 UTF-8。

你可能感兴趣的:(php一些过滤字符串)