I have a multidimensional array and I want the first key that is dynamic. How do I get that in PHP?
I want to display the customer name in frontend. But as you can see in the first array there is the number [12345] => account number (the dynamic part). So if i want to display customer name how can I get this with this dynamic account number.
Array
(
[12345] => Array(
['customername'] => ABC
['customerid'] => 456
)
)