幾個有用的php字串過濾,轉換函數,主要是一些字元的安全處理與字串處理
nl2br();// \n to
addslashes(); stripslashes();//對資料庫操作時,轉義特殊字元
chop();//除去字串右邊空格
trim();//除去字串中所有空格
ltrim();//除去字串左空格
htmlspecialchars();//轉換'$', '"','<','>'為對應的html實體
htmlentities();//轉換所有html標記為對應的html實體
htmlentities
();//轉換所有html標記為對應的html實體
array explode(string separator , string str);//分割字串
string implode(string separator, array arr);//連接字串
以上是php字串過濾與轉換函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!