Answers for "php delete last element of array"

PHP
3

php remove last element array

$stack = array("yellow", "red", "green", "orange", "purple");
 
// delete the last element of an array
$removed = array_pop($stack);
print_r($stack);
Posted by: Guest on February-20-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

Code answers related to "php delete last element of array"

Browse Popular Code Answers by Language