PHPivot icon indicating copy to clipboard operation
PHPivot copied to clipboard

desc sort order not working

Open dahaiexp opened this issue 5 years ago • 0 comments

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

dahaiexp avatar May 03 '19 06:05 dahaiexp