Tuesday, 6 February 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

casting - Why wasn't Tobey Maguire in The Amazing Spider-Man? - Movies & TV

In the Spider-Man franchise, Tobey Maguire is an outstanding performer as a Spider-Man and also reprised his role in the sequels Spider-Man...