Answers for "remove last number php"

PHP
24

php remove last character in string

//Remove the last character using substr
$string = substr($string, 0, -1);
Posted by: Guest on April-02-2020
-1

how to remove last element from php array

if(empty($transport[count($transport)-1])) {
    unset($transport[count($transport)-1]);
}
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language