remove space from the last of the string in php code example
Example 1: php remove last character from string if comma
$string = rtrim($string, ',');
Example 2: php string remove last character
substr(string $string, int $start, int[optional] $length=null);