nl2br();// n to
addslashes(); stripslashes();//對資料庫操作時,轉義特殊字元
chop();//除去字串右邊空格
trim();//除去字串中所有空格
ltrim();//除去字串左邊空格
htmlspecialchars();//轉換'$','"',''為對應的html實體
htmlentities( );//轉換所有html標記為對應的html實體
array explode(string separator, string str);//分割字串
string implode(string separator, array arr);//連接字串
); strtolower();//轉換大小寫
ucfirst();//只轉換第一個字元為大寫
ucwords();//轉換每個words的第一個字母為大寫