php去掉字串所有空格的方法:首先trim只能刪除字串兩邊的空格;然後對trim函數擴展,程式碼為【function trimall($str),$oldchar=array(" ", " ","\t","\n","\r")】。
php去掉字串所有空格的方法:
php刪除字串中的所有空格,其實是對trim函數的擴充,trim只能刪除字串兩邊的空格
程式碼如下:
function trimall($str)//删除空格 { $oldchar=array(" "," ","\t","\n","\r"); $newchar=array("","","","",""); return str_replace($oldchar,$newchar,$str); }
測試:
$str = " a b c d e f "; echo trimall($str);
輸出結果:
abcdef
#相關學習推薦:php程式設計(影片)
以上是php如何去掉字串所有空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!