Answers for "how to get the first value of an array in php"

PHP
4

get first key of array php

$firstKey = array_key_first($array);
Posted by: Guest on September-11-2020
1

php get first element of array

<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack); //Remove "orange" from array and return it
print_r($stack);
/** OUTPUT:
Array
(
    [0] => banana
    [1] => apple
    [2] => raspberry
)
*/
?>
Posted by: Guest on April-22-2021

Code answers related to "how to get the first value of an array in php"

Browse Popular Code Answers by Language