This may not be strictly programming-related.
How come PHP Features / Bugs that seem important(*) always take a while to be developped?
For example, in PHP most sorting functions support the SORT_LOCALE_STRING
, which allows an array of elements to be sorted depending on the system's locale. Most of them, except for the super-useful array_multisort
.
A bug has apparently been filed on 30 Oct 2007, more than two years ago, and its status is still 'Open'.
Is there a way to speed up the process? Maybe help in the development? (The feature I'm referring to should not take too long, as it's a feature already implemented in other sort functions)
(*) I know "important" is subjective, but this particular feature would help improve the consistency of the language...