在 PHP 中,如果你想从字符串中删除空格,可以使用 str_replace()
函数。这是一个示例代码,展示了如何使用 str_replace()
函数删除字符串中的所有空格:
<?php
$string = "This is a sample string with spaces.";
$string_without_spaces = str_replace(" ", "", $string);
echo $string_without_spaces; // 输出: Thisisasamplestringwithspaces.
?>
在这个示例中,$string
变量包含了一个带有空格的字符串。我们使用 str_replace()
函数将所有的空格替换为空字符串(即删除空格),然后将结果存储在 $string_without_spaces
变量中。最后,我们输出处理后的字符串,可以看到所有的空格都被删除了。