溫馨提示×

php如何處理非法字符串

養(yǎng)魚的貓咪
209
2021-03-20 19:25:44
欄目: 編程語言

php如何處理非法字符串

在php中使用str_replace()函數(shù)對非法字符串進(jìn)行處理,具體方法如下:

str_replace()函數(shù)作用:

php中str_replace()函數(shù)的作用是用于替換字符串中的字符。

str_replace()函數(shù)語法:

str_replace(find,replace,string)

參數(shù):

find:需要處理的非法字符。

replace:替換非法字符的值。

string:指定字符串。

str_replace()函數(shù)使用方法:

例:去除字符串中的@、$、*非法字符

function remove_chars($str){

$str = str_replace('@','',$str);

$str = str_replace('$','',$str);

$str = str_replace('*','',$str);

return $str;

}

0