Answers for "php array filter without last element"

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
1

php get all elements of array except last

$array = array( 1,2, 3 );
$sliced = array_slice($array, 0, -1); // array ( 1,2 )
Posted by: Guest on July-02-2021

Code answers related to "php array filter without last element"

Browse Popular Code Answers by Language