Created
May 26, 2017 14:27
-
-
Save anthonybudd/09bd7aaba7d429d937c076d665adf921 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 | |
| function isAssoc($array){ | |
| return count(array_filter(array_keys($array), 'is_string')) > 0; | |
| } | |
| $indexed = [ | |
| 'apple', | |
| 'pear', | |
| 'grape' | |
| ]; | |
| $assoc = [ | |
| 'fruit_1' => 'apple', | |
| 'fruit_2' => 'pear', | |
| 'fruit_3' => 'grape' | |
| ]; | |
| isAssoc($indexed); // false | |
| isAssoc($assoc); // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment