Also, I got this error because I used the sort functions incorrectly.
After installing my associative arrays, I would try to return a sorted array as follows:
$arr = array(...); $arr = asort($arr); //print_r($arr); -> 1
Of course, this only returns the boolean true that has been sorted by the array.
The correct procedure:
$arr = array(...); asort($arr); //print_r($arr); -> sorted array
earth2jason
source share