Answers for "php array remove last three elements"

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

remove all items of an array except the last one in php

$new = array_slice($old, -1)
Posted by: Guest on August-16-2021
0

remove all items of an array except the last 5 in php

$a5 = array_slice($arr, -5);
Posted by: Guest on August-16-2021

Code answers related to "php array remove last three elements"

Browse Popular Code Answers by Language