Answers for "php cut off end of string"

PHP
10

get last character of string php

substr("testers", -1); // returns "s"
Posted by: Guest on March-05-2020
2

php substr remove last 4 characters

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

Code answers related to "php cut off end of string"

Browse Popular Code Answers by Language