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 |
必需。規定要找的值。 |
replace |
必需。規定替換 find 中的值的值。 |
string |
必需。規定被搜尋的字串。 |
count |
可選。一個變量,對替換數進行計數。 |