PHP | Print the last value of an array without affecting the pointer
We are given an array with key-value pair, and we need to find the last value of array without affecting the array pointer.
Examples:
Input : $arr = array('c1' => 'Red', 'c2' => 'Green',
'c3' => 'Blue', 'c4' => 'Black')
Output : Black
Input : $arr = array('p1' => 'New York', 'p2' => 'Germany',
'p3' => 'England', 'p4' => 'France')
Output : France
The above problem can be easily solved using PHP. The idea is to create a copy of the original array and then use the array_pop() inbuilt function, to get the last value of the array. As we are using the array_pop() function on the copy array, so the pointer of the original array remains unchanged.
Built-in function used:
- array_pop(): The function is used to delete or pop the last element of an array.
Below is the implementation of the above approach:
<?php // Input Array $array = array('c1' => 'Delhi', 'c2' => 'Kolkata', 'c3' => 'Mumbai', 'c4' => 'Bangalore'); // Copied Array $copyArray = $array; // getting last element from Copied array $lastElement = array_pop($copyArray); // displaying the last element of the array print_r($lastElement."\n"); // displaying the original array print_r($array); ?> |
Output:
Bangalore
Array
(
[c1] => Delhi
[c2] => Kolkata
[c3] => Mumbai
[c4] => Bangalore
)
Recommended Posts:
- How to print an array in table format using angularJS?
- CSS | pointer-events Property
- How to determine which element the mouse pointer move over using JavaScript ?
- How to get the elements of one array which are not present in another array using JavaScript?
- PHP | echo and print
- p5.js | print() function
- Print PHP Call Stack
- How to add innerHTML to print page?
- What is the difference between array_merge and array + array in PHP?
- PHP str_pad to print string patterns
- What is the difference between echo, print, and print_r in PHP?
- How to create a pop-up to print dialog box using JavaScript?
- How to print the content of an object in JavaScript ?
- Print the content of a div element using JavaScript
- Print current day and time using HTML and JavaScript
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



