Answers for "how to access first element of array in php"

PHP
4

get first key of array php

$firstKey = array_key_first($array);
Posted by: Guest on September-11-2020
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

Code answers related to "how to access first element of array in php"

Browse Popular Code Answers by Language