I have this Array,
Array
(
[0] => Array
(
[ID] => 108
[custom] => Array
(
[date_tps] => Array
(
[0] => 14.07.2014
)
)
)
[1] => Array
(
[ID] => 123
[custom] => Array
(
[date_tps] => Array
(
[0] => 22.07.2014
)
)
)
[2] => Array
(
[ID] => 152
[custom] => Array
(
[date_tps] => Array
(
[0] => 23.06.2014
)
)
)
[3] => Array
(
[ID] => 153
[custom] => Array
(
[date_tps] => Array
(
[0] => 06.07.2014
)
)
)
)
and I'm trying to sort it by date, date_tps[0]
field, from the new date to the old one.
can someone guide me how to make it done ?
I've tried using the php function to sort (those with $a-$b) but it didnt work (I guess its because its really inside many arrays.
thanks a lot!