Created
April 25, 2025 11:15
-
-
Save bdelespierre/259d2a066fac4a39c98879d26a8f6cce 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 array_keys_recursive(array $array): array | |
{ | |
return [ | |
...array_keys($array), | |
...array_merge( | |
...array_values(array_map('array_keys_recursive', array_filter(array_filter($array, 'is_array')))) | |
) | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment