Answers for "get the first entry in array php"

PHP
2

get first element of array php

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

php get first element of array

array_shift(array_values($array));
Posted by: Guest on September-28-2021

Code answers related to "get the first entry in array php"

Browse Popular Code Answers by Language