how can reset an array in php

how can reset an array in php

<?php
$
text= array("type 1","
type 2","type 3"); next($text); $thisvalue current($text); echo "We are now at $thisvalue\n\n"; $first reset($text);
echo 
"Back to $first"; ?>


Printing:

We are now at Item 2

Back to Item 1