復制代碼 代碼如下:
function unhtml($content){
$content=htmlspecialchars($content);
$content=str_replace(chr(13),"<br>",$content);
$content=str_replace(chr(32),"<br>",$content);
$content=str_replace("[_[","<",$content);
$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
可選。一個變量,對替換數進行計數。