PHP: reset() function
reset() function
The reset() function used to move the array's internal pointer to the first element.
Note: reset() rewinds array's internal pointer to the first element and returns the value of the first array element.
Version:
(PHP 4 and above)
Syntax:
reset(array_name)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
array_name | The input array. | Required | Array |
Return value:
The value of the first array element or FALSE if the array is empty.
Value Type: *Mixed.
*Mixed: Mixed indicates that a parameter may accept multiple (but not necessarily all) types.
Example:
<?php
$val1 = array('Language', 'Math', 'Science', 'Geography');
echo current($val1);
echo'<br />';
next($val1);
echo current($val1);
echo'<br />';
reset($val1);
echo current($val1);
?>
Output:
Language Math Language
Pictorial Presentation:
View the example in the browser
Practice here online :
See also
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/reset.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics