i have a multidimensional array in which there is value date and i want to sort it by this value below is array structure:
[
['01-Sep-2018', 'Some other Value'],
['20-Aug-2018', 'Some other Value'],
['21-Aug-2018', 'Some other Value'],
['22-Aug-2018', 'Some other Value'],
['23-Aug-2018', 'Some other Value']
]
I need output like this
[
['20-Aug-2018', 'Some other Value'],
['21-Aug-2018', 'Some other Value'],
['22-Aug-2018', 'Some other Value'],
['23-Aug-2018', 'Some other Value'],
['01-Sep-2018', 'Some other Value']
]