Answers for "trim last two characters php"

PHP
2

php substr remove last 4 characters

echo substr($string, 0, -3);
Posted by: Guest on October-24-2020
0

php remove last character from string if comma

$string = rtrim($string, ',');
Posted by: Guest on June-24-2020

Code answers related to "trim last two characters php"

Browse Popular Code Answers by Language