Answers for "php remove the last 2 lines of a string"

PHP
0

php remove last character from string if comma

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

php remove last 3 letters from string

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

Code answers related to "php remove the last 2 lines of a string"

Browse Popular Code Answers by Language