文字列から html-special char \ を削除するにはどうすればよいですか。
$string = 'This is \ a string with \ special characters \';
文字列から html-special char \ を削除するにはどうすればよいですか。
$string = 'This is \ a string with \ special characters \';
str_replace("char_to_rep","",$string); // replacing with nothing means deleting
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 関数は正常に動作します。
助けてくれてありがとう、でも以下でこれを行うより良い方法はありますか?
$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.'/');
}
str_replace
特殊文字を使用して空の文字に置き換えます
str_replace("#"," ",$string)
すべての特殊文字に対してこのコードを試してください