Answers for "php how to get first element value of array"

PHP
6

get first key of array php

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

first item in array php

$firstItem = array_shift($array);
Posted by: Guest on May-24-2020

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

Browse Popular Code Answers by Language