Answers for "delete first and last char of string php"

PHP
5

php remove last character from string

$hell = substr('hello', 0, -1);
Posted by: Guest on November-04-2019
1

php remove last 3 letters from string

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

Code answers related to "delete first and last char of string php"

Browse Popular Code Answers by Language