从 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
广告