Not All Strings In Arrays

Array keys are coerced into strings or integers, while array values are left intact.

Yet, this doesn’t apply to array keys, so this code will display an ‘Uncaught TypeError: Illegal offset type’, even without strict_types.

This code needs an explicit cast to string to work.

../_images/not_all_strings.png