first two elements of array php code example
Example 1: php array get first x elements
$sliced_array = array_slice($array, 0, 5)
Example 2: limit offset array php
array_slice($array, 0, 50); // same as offset 0 limit 50 in sql
$sliced_array = array_slice($array, 0, 5)
array_slice($array, 0, 50); // same as offset 0 limit 50 in sql