PHP current() Function

The current() function is used to fetch the value of the current element in an array.

Every array has an internal pointer to its “current” element, which is initialized to the first element inserted into the array.

Tip: This function does not move the arrays internal pointer.

ParameterDescription
arrayRequired. Specifies the array to use

Syntax

current(array) 

Example

$names=array("Samuel","Lachlan","Alex");
echo current($names);

Output

Samuel

Leave a Reply

Your email address will not be published. Required fields are marked *