如何在 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中文网其他相关文章!