从PHP中的字符串中删除逗号?
要删除逗号,可以替换。要进行替换,请在PHP中使用str_replace()。
假设以下是我们用逗号输入的字符串
$name="John,Smith";
我们希望从上面的字符串中删除逗号后的输出是
JohnSmith
示例
PHP代码如下
<!DOCTYPE html> <html> <body> <?php $name="John,Smith"; $result = str_replace(',', '', $name); echo "The actual value is=",$name,"<br>"; echo "After removing the comma(,)=",$result,"<br>"; ?> </body> </html>
输出结果
这将产生以下输出
The actual value is=John,Smith After removing the comma(,)=JohnSmith