-1

文字列から html-special char \ を削除するにはどうすればよいですか。

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

5 に答える 5

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


参照も。 html-special-chars を削除する方法

于 2012-06-28T11:24:00.283 に答える
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 に答える
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

str_replace特殊文字を使用して空の文字に置き換えます

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

すべての特殊文字に対してこのコードを試してください

于 2012-06-28T11:21:26.917 に答える