Answers for "php take out first element of array"

PHP
5

how to remove first element in array php

<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack);
print_r($stack);
?>


// Array
// (
//     [0] => banana
//     [1] => apple
//     [2] => raspberry
// )
Posted by: Guest on March-27-2020
1

get first element of array php

array_values($array)[0];
Posted by: Guest on May-31-2021

Code answers related to "php take out first element of array"

Browse Popular Code Answers by Language