Does anyone know how the algorithm for PHP's "array_multisort" function works? Does it use a bubble, quick, selection, etc. sorting methods? I am trying to sort large, multi-dimensional arrays (50 000+) and was wondering what the best method of sorting it was. At the moment, I am using the array_multisort function which takes approximately 10 hours to sort.
I know anyone with any coding experience is going call me crazy for trying to use PHP for this sort of function and say use C/C++ or some other language that handles large arrays better.
No need to criticize😛