gpt4 book ai didi

php - 去掉PHP中两个单词之间的空格

转载 作者:行者123 更新时间:2023-12-01 16:23:34 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How do I strip all spaces out of a string in PHP? [duplicate]

(4 个回答)


5年前关闭。




我正在用 PHP 开发一个网站。在其中,我将图像保存在服务器上的文件夹中。

我接受用户的名称并希望使用该名称作为图像名称。有时用户输入一个名字,就像两个词一样。

所以我想删除两个单词之间的空格。
例如,如果用户输入为“Paneer Pakoda Dish”,我想将其转换为“PaneerPakodaDish”。

我怎样才能做到这一点?

我用了

1) str_replace(' ', '', $str);

2) preg_replace(' ', '', $str);

3) trim($str, ' ');

但是这些并没有按照我的要求提供输出。

最佳答案

<?php
$str = "Paneer Pakoda dish";
echo str_replace(' ', '', $str);
?>

关于php - 去掉PHP中两个单词之间的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34735829/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com