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的第一個字母為大寫
以上就介紹了js截取字串 幾個有用的php字串過濾,轉換函數程式碼,包括了js截取字串方面的內容,希望對PHP教程有興趣的朋友有所幫助。