(PHP 4, PHP 5, PHP 7)
reset — 배열의 내부 포인터를 첫 원소로 설정
&$array
reset()은 array의 내부 포인터를 첫번째 원소로 되감고, 첫번째 배열 원소의 값을 반환합니다.
array
입력 배열.
첫번째 배열 원소의 값을 반환하거나, 빈 배열이면 FALSE를 반환합니다.
FALSE
Example #1 reset() 예제
<?php$array = array('step one', 'step two', 'step three', 'step four');// by default, the pointer is on the first elementecho current($array) . "<br />\n"; // "step one"// skip two stepsnext($array);next($array);echo current($array) . "<br />\n"; // "step three"// reset pointer, start again on step onereset($array);echo current($array) . "<br />\n"; // "step one"?>