Answers for "php get first element of array"

PHP
4

get first key of array php

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

php get first element of array

$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors); //blue
$firstKey = key($colors); //2
Posted by: Guest on October-30-2019
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
0

php get first element of array

array_pop(array_reverse($array));
Posted by: Guest on September-21-2021
0

php get first element of array

array_shift(array_values($array));
Posted by: Guest on September-28-2021
0

php get first element of array

$firstKey=array_keys($arr)[0];
Posted by: Guest on October-19-2021

Code answers related to "php get first element of array"

Browse Popular Code Answers by Language