PHP如何去除字符串空格

假如有如下字符串文字,我们需要去除中间的空格。我们可以使用trim函数先把收尾空格去除,在通过preg_replace函数把空格去除,再通过str_replace函数把空格替换。$prompt = “简忆博客 2023”;$str = trim($prompt);

假如有如下字符串文字,我们需要去除中间的空格。我们可以使用trim函数先把收尾空格去除,在通过preg_replace函数把空格去除,再通过str_replace函数把空格替换。

$prompt = “织梦云博客 2023”;
$str = trim($prompt);
$str = preg_replace('# #','',$str);
$str = str_replace(' ', '', $str);

本文标题为:PHP如何去除字符串空格

基础教程推荐