Answers for "find first element in array php"

PHP
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 "find first element in array php"

Browse Popular Code Answers by Language