I have an array of arrays. The internal array is as follows.
Array
(
[comparisonFeatureId] => 1188
[comparisonFeatureType] => Category
[comparisonValues] => Array
(
[0] => Not Available
[1] => Not Available
[2] => Not Available
[3] => Standard
)
[featureDescription] => Rear Reading Lamps
[groupHeader] => Convenience
)
So, I have an array of the above array, and I need to sort the array by FeatureDescription. Is there a way to do this using one of the PHP internal functions?
source
share