PHPivot
PHPivot copied to clipboard
desc sort order not working
hi @mhadjimichael ,
Good job on building this script, it's amazing!
BTW, found a small bug: ->setSortColumns([PHPivot::SORT_DESC,PHPivot::SORT_DESC])
seems not working, the desc sort order didn't work.
when I checked the source code, seems the issue is that array_reverse doesn't reverse the array in place, so need to assign the result back to the array. [wrong] array_reverse($columns_unique_values[$col]); [correct] $columns_unique_values[$col]=array_reverse($columns_unique_values[$col]);
Best Dahai