function unhtml($content){
$ content=htmlspecialchars ($content);
$content=str_replace(chr(13),"
",$content);
$content=str_replace(chr(32),"
", $content) ;
$content=str_replace("[_[","$content=str_relace(")_)",">",$content);
$content =str_replace("|_|","",$content);
rerurn Trim($content);
}
PHP str_replace() 関数
定義と使用法
str_replace() 関数は、文字列を使用して文字列内の他の文字を置換します。 。
構文
str_replace(find,replace,string,count)
パラメータ |
説明 |
検索 |
必須。検索する値を指定します。 |
置き換え |
必須。findの値を置き換える値を指定します。 |
文字列 |
必須。検索する文字列を指定します。 |
カウント |
オプション。置換の数をカウントする変数。 |