1blankz7/php-sorting

此包已被弃用且不再维护。作者建议使用 cubicl/php-sorting 包。

PHP 的排序库

2.0.0 2023-06-02 15:26 UTC

This package is auto-updated.

Last update: 2023-06-02 15:27:46 UTC


README

实现了与 Comparable RFC 兼容的接口定义的通用排序系统。

使用方法

您有两种选择。根据您的使用情况,您可以实现 Cubicl\Sorting\Comparable 接口或使用比较器。

<?php

// with a comparable
$orderedList = $sortManager->sortComparable($unorderedListOfComparable);

// or with a comparator
$orderedList = $sortManager->sortWithComparator($comparator, $unorderedList);