php刪除空白字串的方法:1、透過trim去除字串兩側的普通空格;2、使用str_replace刪除;3、透過strtr刪除;4、使用「function trimall($str){ ...}”方法刪除。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
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);
推薦學習:《javascript高級教程》
以上是php怎麼刪除空白字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!