Answers for "php return first match of array"

PHP
4

php array get first x elements

$sliced_array = array_slice($array, 0, 5)
Posted by: Guest on January-07-2021
0

php get first element of array

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

Code answers related to "php return first match of array"

Browse Popular Code Answers by Language