I need to sort the following multidimensional array in php and thereafter get the respective key of any array that I want:
array:3 [▼
0 => array:1 [▼
4 => "404"
]
1 => array:1 [▼
5 => "373"
]
2 => array:1 [▼
6 => "305"
]
]
In the above case, I would like to get the position / key of 5 after sorting 404, 373 and 305.
The result of this should be value 2.