PHP 字符串

php如何处理非法字符串

养鱼的猫咪
210
2021-03-20 19:25:44
栏目: 编程语言

php如何处理非法字符串

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

}

0
看了该问题的人还看了