How to Get Last 20 Elements in PHP Array?

03-Apr-2023

.

Admin

How to Get Last 20 Elements in PHP Array?

Hi Dev,

This tutorial is focused on how to get the last 20 elements in a PHP array. you'll learn how to get the last 20 elements in the array. We will use how to find the last 20 elements in a PHP array. if you have a question about how to find the last 20 elements in the array then I will give a simple example with a solution.

Now, let's see the article on how to get the last 20 elements in a PHP array. it's a simple example of how to get the last 20 elements in the array. you can understand the concept of how to find the last 20 elements in a PHP array. if you have a question about how to find the last 20 elements in the array then I will give a simple example with a solution.

Example:


index.php

<?php

$colors = array("red", "green", "blue", "purple", "pink", "yellow", "black", "white", "orange", "golden", "silver", "brown", "gray", "maroon", "fuchsia", "lime", "olive", "navy", "teal", "aqua", "violet");

print_r(array_slice($colors,-20,20));

?>

Output:

Array ( [0] => green [1] => blue [2] => purple [3] => pink [4] => yellow [5] => black [6] => white [7] => orange [8] => golden [9] => silver [10] => brown [11] => gray [12] => maroon [13] => fuchsia [14] => lime [15] => olive [16] => navy [17] => teal [18] => aqua [19] => violet )

I hope it could help you...

#PHP