In the example below from http://php.net/manual/en/function.usort.php, a callback function is called.
function cmp($a, $b)
{
if ($a == $b) {
return 0;
}
return ($a < $b) ? -1 : 1;
}
$x = array(3, 2, 5, 6, 1);
usort($x, "cmp");
foreach ($x as $key => $value) {
echo "$key: $value<br>";
}
I'm not specifically interested in usort, but it's in the example. My question is, what are the $a and $b arguments to the cmp function? usort is given $x which is an array, so I don't understand what's going on in cmp (the code is simple, but I don't know what the arguments are).
My imagination tells me that $a and $b both iterate the array in some way (the only way it could be sorted). Can somebody shed some light on this?