在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;
}