Answers for "how can i know the first elemnt of an array php"

PHP
4

php array get first x elements

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

first item in array php

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

Code answers related to "how can i know the first elemnt of an array php"

Browse Popular Code Answers by Language