下面只提供幾個簡單常用的函數,chop執行去除空格處理,get_html_translation_table返迴轉化列表到變數,定義包括HTML編碼的字串htmlentities,htmlspecialchars_decode 定義包含HTML特殊字元的字串,nl2br quotemeta rtrim等.
定義和用法:chop() 函數從字串的末端開始刪除空白字元或其他預定義字元,該函數的 rtrim() 函數的別名.
文法:chop(string,charlist),代碼如下:
$str="i'm a teacher "; //定義字串
$result=chop($str); //執行去除空格處理
echo $result; //輸出結果
定義和用法:get_html_translation_table() 函數返回被 htmlentities() 和 htmlspecialchars() 函數使用的翻譯表.
文法:get_html_translation_table(function,quotestyle),代碼如下:
/*/
$trans=get_html_translation_table(html_entities); //返迴轉化列表到變數
print_r($trans); //輸出轉換表
$str="hallo & <frau> & krmer"; //定義字串
$encoded=strtr($str,$trans); //尋找字元
echo $encoded; //輸出結果
//
$str="a 'quote' is <b>bold</b>"; //定義包括html編碼的字串
echo htmlentities($str); //輸出經過處理的字串
echo htmlentities($str, ent_quotes); //加上選擇性參數後的輸出結果
//
$str='<p>this -> "</p>'; //定義包含html特殊字元的字串
echo htmlspecialchars_decode($str); //輸出轉換後的內容
echo "<br>";
echo htmlspecialchars_decode($str,ent_noquotes); //不對引號進行編碼的輸出結果
//
$str="cat isn't n dog"; //定義包含分行符號的字串
$result=nl2br($str); //執行轉換操作
echo $result; //輸出轉換後的結果
//
$str="hello world.(can you hear me?)"; //定義包含元字元的字串
$result=quotemeta($str); //執行轉換操作
echo $result; //輸出轉換後的結果
//開原始碼phpfensi.com
//
$str="hello world "; //定義末尾有空格的字串
$result=rtrim($str); //執行轉換操作
echo $result; //輸出轉換後的結果