PHP如何删除最后一个逗号
示例输出
1. test,test,test,test,test,
2. test,test,test,,
3. test,test,,,
4. test,,,,,
我尝试根据我的上一个问题 但它只修剪了最后一个逗号。
如何删除最后一个逗号?
Example output
1. test,test,test,test,test,
2. test,test,test,,
3. test,test,,,
4. test,,,,,
I tried use implode according to my previous question but It's trim only last comma.
How to remove any last commas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅手册。
See the manual.
rtrim 例如:
rtrim for example:
完全不同的方式:
completely different way: