阅读量:0
在PHP中,可以使用正则表达式和str_replace()函数去除特殊字符。以下是两种方法:
方法一:使用正则表达式
$str = "This is a string with special characters: !@#$%^&*()_+"; $new_str = preg_replace('/[^A-Za-z0-9-]/', '', $str); echo $new_str; // Output: Thisisastringwithspecialcharacters
方法二:使用str_replace()函数
$str = "This is a string with special characters: !@#$%^&*()_+"; $special_chars = array('!', '@', '#', '$', '%', '^', '&', '(', ')', '_'); $new_str = str_replace($special_chars, '', $str); echo $new_str; // Output: This is a string with special characters
这两种方法都可以去除特殊字符,可以根据具体的需求选择使用哪种方法。