Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:55
Show Gist options
  • Save ruliarmando/5582874 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582874 to your computer and use it in GitHub Desktop.
<?php
$arr = array(
1=>'satu',
2=>'dua',
3=>'tiga',
);
echo current($arr)."<br />";
echo next($arr)."<br />";
echo next($arr)."<br />";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment