Search code examples
phptrim

Php how to remove any last commas


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?


Solution

  • rtrim('test,,,,,', ',');
    

    See the manual.