mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
22 lines
435 B
PHP
22 lines
435 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OC;
|
|
|
|
class NaturalSort_DefaultCollator {
|
|
public function compare($a, $b) {
|
|
$result = strcasecmp($a, $b);
|
|
if ($result === 0) {
|
|
if ($a === $b) {
|
|
return 0;
|
|
}
|
|
return ($a > $b) ? -1 : 1;
|
|
}
|
|
return ($result < 0) ? -1 : 1;
|
|
}
|
|
}
|