get first 10 elements of array php code example
Example 1: php array get first x elements
$sliced_array = array_slice($array, 0, 5)
Example 2: php get first element of array
$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors);
$firstKey = key($colors);
Example 3: php get first element of array
<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack);
print_r($stack);
?>
Example 4: php define array first 10 number
<?php
foreach (range(0, 12) as $number) {
echo $number;
}
foreach (range(0, 100, 10) as $number) {
echo $number;
}
foreach (range('a', 'i') as $letter) {
echo $letter;
}
foreach (range('c', 'a') as $letter) {
echo $letter;
}
?>