欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php怎么去除右边的逗号

程序员文章站 2022-04-08 23:47:20
...

php去除右边的逗号的方法:首先创建一个PHP示例文件;然后通过“rtrim($str, ',');”方法删除字符串中右边的逗号即可。

php怎么去除右边的逗号

本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑

首先分别解释下,

trim过滤字符串两端,

rtrim过滤字符串尾部,=chop()

ltrim过滤字符串首部.

过滤字符串中键的咚咚就只能用str_replace咯.

举个例子说明下,

PHP代码

代码如下:

$str = '123,333,234,';
echo rtrim($str, ',');

rtrim实例代码2

代码如下:

<?php
$text = "\t\tThese are a few words :) ...  ";
$trimmed = rtrim($text);
// $trimmed = "\t\tThese are a few words :) ..."
$trimmed = rtrim($text, " \t.");
// $trimmed = "\t\tThese are a few words :)"
$clean = rtrim($binary, "\x00..\x1F");
// trim the ASCII control characters at the end of $binary
// (from 0 to 31 inclusive)
?>

【推荐学习:PHP视频教程

以上就是php怎么去除右边的逗号的详细内容,更多请关注其它相关文章!

相关标签: php