php去掉字串中空格的方法:1、使用php函數trim去除;2、使用php函數str_replace去除;3、使用php函數strtr去除;4、使用trimall方法去除;5、透過正則去掉普通空格等等。
推薦:《PHP影片教學》
php中移除字串中的空格
1.使用php函數trim():
trim($str)
可移除字串兩側的普通空格;
2.使用php函數:str_replace():
str_replace(' ','',$str)
3.使用php函數:strtr():
strtr($str,array(' '=>''))
4.使用自己寫的封裝函數:
function trimall($str)//删除空格 { $limit=array(" "," ","\t","\n","\r"); $rep=array("","","","",""); return str_replace($limit,$rep,$str); }
5.使用該正規則去掉普通空格:
preg_replace('# #', '', $str)
6.使用該正規則去掉所有空格包含全角空格:
$str =preg_replace("/\s| /","",$str);
以上是php去掉字串中的空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!