排序数组不适用于负值(PHP 5.4.16)

Why is this sorting not working for my 'change' value? I tried many different ways but still cannot make it work to sort it (also with negative values). The script is running on PHP PHP 5.4.16.

$url = 'https://bittrex.com/api/v2.0/pub/Markets/GetMarketSummaries';
$json= file_get_contents($url);
$data = json_decode($json, true);

$items = array();
foreach($data['result'] as $row) {

$base = $row['Market']['BaseCurrency'];

if($base == 'BTC'){

$created = $row['Market']['Created'];
$newDate = date("d-m-Y", strtotime($created));
$last = number_format((float)$row['Summary']['Last'], 8, '.', '');
$prev = number_format((float)$row['Summary']['PrevDay'], 8, '.', '');
$vol = number_format((float)$row['Summary']['BaseVolume'], 2, '.', '');
$name = $row['Market']['MarketCurrencyLong'];
$market = $row['Market']['MarketCurrency'];
$image = $row['Market']['LogoUrl'];

$newName = "$name ($market)";

$change = number_format((float)(1 - $prev / $last) * 100, 2, '.', '');

$items[] = array('name' => $newName, 'change' => $change, 'logo' => $image, 'symb' => $market, 'vol' => $vol, 'date' => $newDate);

}

}

usort($items, function($a, $b) {
            return ($b['change']) - ($a['change']);
            });

echo '<pre>'; print_r($items); echo '</pre>';

Change your comparison function to:

return (float)$b['change'] > (float)$a['change'] ? 1 : ((float)$b['change'] < (float)$a['change'] ? -1 : 0);

If you had PHP 7 or newer, you could've used spaceship operator:

return (float)$b['change'] <=> (float)$a['change'];