current() function in php
Last Updated by Pooja Chikara
0 2757
PHP current() function is used to return the value corresponding to the current pointer of a PHP array. It is an inbuilt function of PHP.
Syntax:
current($array);
here,
$array is a PHP array.
Example:
<?php
$arr1 = array("apple","orange","banana","fig",);
$current_value=current($arr1); // it will return value corresponding to the current pointer i.e. apple
echo "Current value is $current_value <br>";
?>Output:

Note: You should also read prev(), next(), end() and reset() functions.
Share:
Recommended Topics:
You May Also Like
PHP Examples
News letter
Subscribe To Never Miss an Article From

Comments
Waiting for your comments