Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Just use two shift and one pop array operations on the main array.
shift
pop
$array = your_array(); array_shift($array); //remove 1st array_shift($array); //remove 2nd array_pop($array); //remove last var_dumpprint_r($array); //required array
$array = your_array(); array_shift($array); //remove 1st array_shift($array); //remove 2nd array_pop($array); //remove last var_dump($array); //required array
Just use two shift and one pop operations on the main array.
$array = your_array(); array_shift($array); //remove 1st array_shift($array); //remove 2nd array_pop($array); //remove last print_r($array); //required array