Answers for "return the first three element from an array in php"

PHP
1

php array get first x elements

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

limit offset array php

array_slice($array, 0, 50); // same as offset 0 limit 50 in sql
Posted by: Guest on September-02-2020

Code answers related to "return the first three element from an array in php"

Browse Popular Code Answers by Language