在php中使用str_replace()函數對非法字符串進行處理,具體方法如下:
str_replace()函數作用:
php中str_replace()函數的作用是用于替換字符串中的字符。
str_replace()函數語法:
str_replace(find,replace,string)
參數:
find:需要處理的非法字符。
replace:替換非法字符的值。
string:指定字符串。
str_replace()函數使用方法:
例:去除字符串中的@、$、*非法字符
function remove_chars($str){
$str = str_replace('@','',$str);
$str = str_replace('$','',$str);
$str = str_replace('*','',$str);
return $str;
}