- function unhtml($content){
- $content=htmlspecialchars($content);
- $content=str_replace(chr(13),"
",$content); $content=str_replace(chr(32)," ",$content); - $content=str_replace("[_[","<",$content); _)",">",$content);
- $content=str_replace("|_|","",$content);
- rerurn Trim($content);
- }
- ?>
-
-
- コピーコード
を添付:
PHP str_replace() 関数
定義と使い方
str_replace() 関数は、1 つの文字列を使用して文字列内の他の文字を置き換えます。
文法
str_replace(検索、置換、文字列、カウント)
パラメータの説明
必要なものを見つけてください。検索する値を指定します。
交換が必要です。 find の値を置き換える値を指定します。
文字列が必要です。検索する文字列を指定します。
カウントはオプションです。置換の数をカウントする変数。
|