如何在PHP 中刪除字串中的所有空格
在PHP 中,您可以使用str_replace( ) 函數或preg_replace()函數。
使用str_replace()
如果只想刪除空格,可以使用 str_replace() 函數。以下程式碼片段示範如何使用它:
$string = "this is my string"; $string = str_replace(' ', '', $string); echo $string; // Output: thisismystring
使用preg_replace()
如果要刪除所有空白字符,包括空格、製表符和行結尾,您可以使用preg_replace() 函數。以下程式碼片段示範如何使用它:
$string = "this is my string"; $string = preg_replace('/\s+/', '', $string); echo $string; // Output: thisismystring
/s 正規表示式模式符合一個或多個空白字元。 '' 替換字串指定應刪除符合的空白字元。
以上是如何從 PHP 字串中刪除空格(或所有空白)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!