The key() function is an inbuilt function in PHP which is used to return the index of the element of a given array to which the internal pointer is currently pointing. The current element may be starting or next element which depends on the cursor position. By default cursor position is at zero index i.e, at starting element of the given array.
Syntax:
key($array)
Parameters: This function accepts a single parameter $array. It is the array for which we want to find the current element pointed by the internal pointer.
Return Value: It returns the index of current element of the given array. If the input array is empty then the key() function will return NULL.
Below programs illustrate the key() function in PHP:
Program 1:
<?php // input array $arr = array("Ram", "Geeta", "Shita", "Ramu"); // Here key function prints the index of // current element of the array. echo "The index of the current element of". " the array is: " . key($arr); ?> |
Output:
The index of the current element of the array is: 0
Program 2:
<?php // input array $arr=array("Ram", "Geeta", "Shita", "Ramu"); // next function increase the internal pointer // to point next to the current element. next($arr); // Here key function prints the index of // the current element of the array. echo "The index of the current element of". " the array is: " . key($arr); ?> |
Output:
The index of the current element of the array is: 1
Program 3:
<?php // input array $arr = array("0", "F", "D", "4"); // using next() function to increment // internal pointer two times next($arr); next($arr); // Here key function prints the index of // element of the current array position. echo "The index of the current element of". " the array is: " . key($arr); ?> |
Output:
The index of the current element of the array is: 2
Reference:
http://php.net/manual/en/function.key.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to Check a Function is a Generator Function or not using JavaScript ?
- How to get the function name from within that function using JavaScript ?
- How to get the function name inside a function in PHP ?
- D3.js now() function
- p5.js | second() function
- p5.js | arc() Function
- p5.js | sq() function
- p5.js | pow() function
- p5.js | day() function
- p5.js | abs() function
- PHP | ord() Function
- CSS | var() Function
- p5.js | hex() function
- p5.js | str() function
- p5.js | int() function
- CSS | url() Function
- p5.js | min() function
- PHP | each() Function
- p5.js | hue() function
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.

