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