Answers for "php array take off last el"

PHP
4

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
0

php slice last arrat

array_slice($a, -3, 3, true);
Posted by: Guest on October-02-2021

Code answers related to "php array take off last el"

Browse Popular Code Answers by Language