I am using php function usort to sort an array. The custom php function must be generated because its dynamic

$intCompareField = 2;
$functSort = function($a, $b) {
  return ($a[$intCompareField] > $a[$intCompareField])?1:-1;
}

usort($arrayToSort, $functSort);

The $intCompareField in the compare function is null, my guessing is because the $intCompareField was declared outside of the function. Setting global $intCompareField does not seem to work.

Ps: I am using $intCompareField because the array to sort is multidimensional and i want to be able what key in the array to sort.

link|improve this question

Are you sure you want to only ever return 1 or -1, it is generally desired to return 0 for "equal" values. – salathe Jan 25 at 9:12
I know that but i want to keep the function short. Thanks tough for the comment – keepwalking Jan 27 at 10:21
So, you prefer short and broken over short —though not as short as before— and working? Good luck with that! – salathe Jan 27 at 13:25
feedback

2 Answers

up vote 2 down vote accepted

Try adding use, which passes variables from the outer scope to anonymous functions

function($a, $b) use ($intCompareField) {
     return ($a[$intCompareField] > $a[$intCompareField])?1:-1;
}
link|improve this answer
Thanks, it seems its working. – keepwalking Jan 25 at 9:07
feedback

While Dor Shemer's answer would suffice, I find it often better to have a function which generates the required comparison function.

$functSort = function ($field) {
    return function($a, $b) use ($field) {
        // Do your comparison here
    };
};

$intCompareField = 2;
usort($arrayToSort, $functSort($intCompareField));

You could make the function in $functSort be a named function (e.g. sort_by_field_factory() or some other appropriate name), there's no requirement for it to be an anonymous function.

link|improve this answer
thanks for the tip :) – keepwalking Jan 25 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.