Skip to content

Instantly share code, notes, and snippets.

@jcasabona
Created October 2, 2020 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcasabona/0758323782164815812a2427648b5624 to your computer and use it in GitHub Desktop.
Save jcasabona/0758323782164815812a2427648b5624 to your computer and use it in GitHub Desktop.
<?php
$a = array( 'joe' => 35,
'phil' => 33,
);
echo $a[0]; //this will throw an error
?>
<?php
$a = array( 'joe' => 35,
'phil' => 33,
);
$keys = array_keys($a);
echo $a[$keys[0]]; //This will work.
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment