Answers for "strip first and last character php"

PHP
9

remove last letter php

<?php
echo substr('abcdef',0, -1);     // abcde
?>
Posted by: Guest on June-09-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 "strip first and last character php"

Browse Popular Code Answers by Language