Created
March 19, 2013 12:42
-
-
Save calvinchoy/5195778 to your computer and use it in GitHub Desktop.
PHP get first key and value from array
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 | |
//Get first key and value from an array | |
$first_value = reset($array); | |
$first_key = key($array); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment