| 10 | | There's also an edge oddity around null values (that while not used in core, might present in others usage of it) such that `wp_array_get( [ 'key' => null ], 'key', true )` returns `true` as the key isn't considered set in the input. Perhaps that would be thought of as expected behaviour. |
| | 10 | There's also an edge oddity around null values (that while not used in core, might present in others usage of it) such that `wp_array_get( [ 'key' => null ], [ 'key' ], true )` returns `true` as the key isn't considered set in the input. Perhaps that would be thought of as expected behaviour. |
| | 11 | |
| | 12 | ''edit: had to add array syntax around the `$path` var param in examples which I missed.'' |