如何从字符串中删除 html 特殊字符 \。
$string = 'This is \ a string with \ special characters \';
如何从字符串中删除 html 特殊字符 \。
$string = 'This is \ a string with \ special characters \';
str_replace("char_to_rep","",$string); // replacing with nothing means deleting
也参考。
如何删除 html 特殊字符
使用str_replace
并用空字符替换特殊字符
str_replace("#"," ",$string)
为所有特殊字符尝试此代码
非常感谢您的帮助,但是下面有更好的方法吗?
$post = '(&repl^eac&e_+';
function repleace($post) {
$array = array('.html', '.php', '±', '§', '!', '@', '€', '`', '#', '$', '%', '^', '&', '*', '(', ')', '+', '=', '<', '>', '?', '/', '|', '[', ']', ':', ';', ',', '~', '.');
$post = str_replace($array, '', $post);
$post = str_replace(' ', '_', $post);
$post = str_replace('-', '_', $post);
return strtolower('/'.$post.'/');
}
function($input) {
$input = preg_replace("/&#?[a-z0-9]{2,8};/i","",$input);
$input = ucfirst($input);
return $input;
}
/&#?[a-z0-9]{2,8};/i 字符中的 php pre_repleace 函数工作正常。