Hello,
For the last 3 days, I have been trying to sort an array, but without success.
I tried in the php file first and in the tpl file, but it was impossible for me to sort my array.
Can you help me please ??
This is the structure of my array (thanks to the smaty debug tool !) :
Array (5)
attributes => Array (4)
23 => "1L"
24 => "3.5L"
21 => "50ml"
22 => "350ml"
name => "Contenance"
is_color_group => "0"
attributes_quantity => Array (4)
23 => 1
24 => 500
22 => 500
21 => 500
default => 21
I wish to sort it by the ascending "id" to obtain this kind of result :
Array (5)
attributes => Array (4)
21 => "50ml"
22 => "350ml"
23 => "1L"
24 => "3.5L"
name => "Contenance"
is_color_group => "0"
attributes_quantity => Array (4)
21 => 500
22 => 500
23 => 1
24 => 500
default => 21
Have you an idea ?