Answers for "get first element on aarry php"

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
0

php get first element of array

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

Code answers related to "get first element on aarry php"

Browse Popular Code Answers by Language