Home > Article > Backend Development > How to remove trailing comma in php
In php, you can use the rtrim() function to remove the comma at the end of the string. This function can remove the blank characters or other predefined characters on the right side of the string and return the modified string; specific use The syntax "rtrim(string,",")" is to pass the string that needs to remove the trailing comma into the string parameter.
The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer
php removes the comma at the end of the string
<?php $str = "a,b,c,d,"; echo rtrim($str, ","); ?>
Output:
a,b,c,d
Related function introduction:
rtrim() function removes whitespace characters on the right side of the string or other predefined characters. Grammar format:
rtrim(string,charlist)
Description | |
---|---|
string | Required. Specifies the string to check.|
charlist | Optional. Specifies which characters are removed from the string. If this parameter is omitted, all of the following characters are removed:
|
PHP Video Tutorial"
The above is the detailed content of How to remove trailing comma in php. For more information, please follow other related articles on the PHP Chinese website!