Answers for "how to remove the last 3 character of a string in php"

PHP
2

php substr remove last 4 characters

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

Code answers related to "how to remove the last 3 character of a string in php"

Browse Popular Code Answers by Language