Lines Matching defs:sort
8 * DokuWiki sort functions
102 * Drop-in replacement for sort().
103 * It uses a collator-based sort, or sort() with flags SORT_NATURAL and SORT_FLAG_CASE as a fallback.
110 public static function sort(&$array)
114 return $collator->sort($array);
116 return sort($array, SORT_NATURAL | SORT_FLAG_CASE);
122 * It uses a collator-based sort, or ksort() with flags SORT_NATURAL and SORT_FLAG_CASE as a fallback.
141 * It uses a collator-based sort, or asort() with flags SORT_NATURAL and SORT_FLAG_CASE as a fallback.
161 * so the correct behavior is to sort page names and reflect this sorting in the filename array.