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);//連接字符串
strtoupper(); strtolower();//轉換大小寫
ucfirst();//只轉換第一個字符為大寫
ucwords();//轉換每個words的第一個字母為大寫