Answers for "deleting the last elemt in array 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

Code answers related to "deleting the last elemt in array php"

Browse Popular Code Answers by Language