Source Code:
(back to article)
<?php $string = "apples, bananas, oranges, pears, "; $string = rtrim($string, ", "); echo $string; // Outputs "apples, bananas, oranges, pears"
Result:
Report an issue