Answers for "display a first value of array php"

PHP
1

get first element of array php

array_values($array)[0];
Posted by: Guest on May-31-2021
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

Code answers related to "display a first value of array php"

Browse Popular Code Answers by Language