Home  >  Article  >  Backend Development  >  The php reset() function pointer points to the first element in the array and outputs the example code

The php reset() function pointer points to the first element in the array and outputs the example code

高洛峰
高洛峰Original
2016-12-30 13:14:501447browse

The reset function points the internal pointer of the array to the first unit and outputs the array.

Basic syntax

reset(array)

reset() Rewinds the internal pointer of array to the first element and returns the value of the first array element value.

Parameter introduction:

The php reset() function pointer points to the first element in the array and outputs the example code

Return value

Returns the value of the first unit of the array, or returns FALSE if the array is empty.

Example

<?php
 
$array = array(&#39;step one&#39;, &#39;step two&#39;, &#39;step three&#39;, &#39;step four&#39;);
 
// 数组默认指针指向第一个元素
echo current($array)."<br />";
 
// 将指针指向下一个元素
next($array);
next($array);
echo current($array)."<br />";
 
// 将指针指向重新指向第一个元素
reset($array);
echo current($array)."<br />";
?>

Run result:

step one
step three
step one

Thanks for reading, I hope it can help everyone, thank you for your support of this site!

For more php reset() function pointer points to the first element in the array and outputs the example code, please pay attention to the PHP Chinese website for related articles!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn