Here is my array:
$arr = [
        1 => [
              2 => "something",
              3 => "something else"
            ],
        2 => "foo br"
    ];
I need to restart all keys and start all of them from 0. Based on some researches, I figured out I have to use array_values() function. But it just makes the keys of outer array re-index, See.
How can I apply it on the all keys of array? (even nested ones)


array_valueson each child array