Previous | Home | Next |
array_key()
The key() function returns the element key from the current internal pointer position and return false on error.
Syntax:key(array)
In above syntax, "array" specifies the array to use
Example:
<?php $vehicle = array("Car", "Scooter", "Motorcycle", "Truck"); echo "The key from the current position is: " .key($vehicle); ?>
Output:
Previous | Home | Next |