Answers for "php array first"

PHP
1

get first element of array php

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

first item in array php

$firstItem = array_shift($array);
Posted by: Guest on May-24-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_shift(array_values($array));
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language