Skip to content

Instantly share code, notes, and snippets.

@langsharpe
Created March 20, 2011 04:22
Show Gist options
  • Save langsharpe/878070 to your computer and use it in GitHub Desktop.
Save langsharpe/878070 to your computer and use it in GitHub Desktop.
Ordered array in PHP
<?php
$a['key1'] = 'one';
$a['key0'] = 'zero';
foreach($a as $value) {
print $value . "\n";
}
?>
lang@virtualbox1:~/$ php hash.php
one
zero
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment