Answers for "php get first 100 elements of array"

PHP
4

php array get first x elements

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

php get first element of array

<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack); //Remove "orange" from array and return it
print_r($stack);
/** OUTPUT:
Array
(
    [0] => banana
    [1] => apple
    [2] => raspberry
)
*/
?>
Posted by: Guest on April-22-2021

Code answers related to "php get first 100 elements of array"

Browse Popular Code Answers by Language