Created
October 2, 2020 14:33
-
-
Save jcasabona/0758323782164815812a2427648b5624 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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