php刪除字串中空格的方法:1、使用str_ireplace()函數,語法「str_ireplace(' ', '', $str)」;2、使用str_replace()函數,語法「str_replace( ' ', '', $str)」。
本教學操作環境:windows7系統、PHP7.1版,DELL G3電腦
方法1:使用str_ireplace()函數
<?php $str = 'hello world !'; $search = ' '; $replace = ''; echo str_ireplace($search, $replace, $str); ?>
輸出:
helloworld!
方法2:使用str_replace()函數
<?php $str = 'hello world !'; $str = str_replace(' ', '', $str); echo $str; ?>
輸出:
helloworld!
推薦學習:《PHP影片教學》
以上是php怎麼刪除字串中的空格的詳細內容。更多資訊請關注PHP中文網其他相關文章!