コードをコピーします コードは次のとおりです:
function unhtml($content){
$content=htmlspecialchars($content);
$content=str_replace(chr(13),"
" ,$content );
$content=str_replace(chr(32),"
",$content);
$content=str_replace("[_[","<",$content); content=str_relace (")_)",">",$content);
$content=str_replace("|_|","",$content);
PHP str_replace() 関数
定義と使用法
str_replace() 関数は、文字列を使用して文字列内の他の文字を置き換えます。
構文
str_replace(find,replace,string,count)
パラメータ
説明
| 見つける
| 必須。検索する値を指定します。
| 交換
| 必須。
findの値を置き換える値を指定します。 |
文字列
| 必須。検索する文字列を指定します。
| 数える
| オプション。置換の数をカウントする変数。
|
|
http://www.bkjia.com/PHPjc/325441.html
www.bkjia.com
truehttp://www.bkjia.com/PHPjc/325441.html技術記事次のようにコードをコピーします。 function unhtml($content){ $content=htmlspecialchars($content); $content=str_replace(chr(13),"br",$content); " br",$content);...