<?php $array=array("One", "Two", 3, "Apple"); while(list($key,$value)=each($array)) { echo "$key : $value\n"; } ?>
0 : One 1 : Two 2 : 3 3 : Apple