Tuesday, February 6, 2018

sort array on specific value with php

I have an array with specific values in it and i would like to sort the array on a specific value in it. For instance, TOTCOM_METIER DESC.
Ex :



Array
(
[0] => Array
(
[TOTCOM_METIER] => 1
[metier] => Traiteur
)

[1] => Array
(
[TOTCOM_METIER] => 4
[metier] => Restauration traditionnelle
)

[2] => Array
(
[TOTCOM_METIER] => 2
[metier] => Coiffure
)

)


I would like to sort it on TOTCOM_METIER DESC to have this result :



Array
(
[0] => Array
(
[TOTCOM_METIER] => 4
[metier] => Restauration traditionnelle
)

[1] => Array
(
[TOTCOM_METIER] => 2
[metier] => Coiffure
)

[2] => Array
(
[TOTCOM_METIER] => 1
[metier] => Traiteur
)

)

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...