Skip to content

Instantly share code, notes, and snippets.

@tliff
Created November 10, 2013 01:39
Show Gist options
  • Save tliff/7392495 to your computer and use it in GitHub Desktop.
Save tliff/7392495 to your computer and use it in GitHub Desktop.
<?php
$a = [];
$a[0] = 1;
$a['banana'] = 2;
$a[] = 3;
$a[2] = 4;
for($i=0;$i<count($a); $i++)
echo $a[$i];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment