Answers for "pop method of array in php"

PHP
-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