abn
0
Q:

php pop array

$stack = array("yellow", "red", "green", "orange", "purple");
 
// delete the last element of an array
$removed = array_pop($stack);
print_r($stack);
2

<?php

$a=array("red","green","blue");

array_pop($a);

print_r($a);

?>
 
3
if(empty($transport[count($transport)-1])) {
    unset($transport[count($transport)-1]);
}
0

New to Communities?

Join the community