-1

如何从字符串中删除 html 特殊字符 \。

$string = 'This is \ a string with \ special characters \';
4

5 回答 5

1
str_replace("char_to_rep","",$string); // replacing with nothing means deleting 


也参考。 如何删除 html 特殊字符

于 2012-06-28T11:24:00.283 回答
0

使用str_replace并用空字符替换特殊字符

于 2012-06-28T11:19:32.657 回答
0
str_replace("#"," ",$string)

为所有特殊字符尝试此代码

于 2012-06-28T11:21:26.917 回答
0

非常感谢您的帮助,但是下面有更好的方法吗?

    $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.'/');
    }
于 2013-02-28T10:43:27.557 回答
0
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 函数工作正常。

于 2013-03-14T10:34:52.807 回答