Skip to content

Instantly share code, notes, and snippets.

@bdelespierre
Created April 25, 2025 11:15
Show Gist options
  • Save bdelespierre/259d2a066fac4a39c98879d26a8f6cce to your computer and use it in GitHub Desktop.
Save bdelespierre/259d2a066fac4a39c98879d26a8f6cce to your computer and use it in GitHub Desktop.
<?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