• 技术文章 >后端开发 >PHP问题

    php如何去掉字符串最后一个逗号

    coldplay.xixicoldplay.xixi2020-08-29 11:39:49原创1264

    php去掉字符串最后一个逗号的方法:使用函数rtrim过滤字符串尾部,代码为【$trimmed = "\t\tThese are a few words :) .."$str = '13,3';echo rtrim($str, ',')】。

    相关学习推荐:php图文教程

    php去掉字符串最后一个逗号的方法:

    首先分别解释下,

    过滤字符串中键的咚咚就只能用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中文网其它相关文章!

    声明:本文原创发布php中文网,转载请注明出处,感谢您的尊重!如有疑问,请联系admin@php.cn处理
    专题推荐:php 逗号
    上一篇:php怎样安装openssl扩展 下一篇:php怎样将数组转换为json
    大前端线上培训班

    相关文章推荐

    • php字符串中去除左边第一逗号的方法• php怎么去除逗号• php如何用逗号将字符串转数组• php如何去掉字符串尾部的逗号

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网