gpt4 book ai didi

排序

转载 作者:行者123 更新时间:2023-12-02 05:29:37 30 4
gpt4 key购买 nike

我正在尝试对每个条目有多个值的关联数组进行排序。

例如

[0] => stdClass Object ( [type] => node [sid] => 158 [score] => 0.059600525242489 )
[1] => stdClass Object ( [type] => node [sid] => 247 [score] => 0.059600525242489 )

我希望数组按“分数”排序(最高分数是第一个索引)

我该怎么做?

最佳答案

使用 usort function使用此比较功能:

function cmpByScore($a, $b) {
if ($a['score'] == $b['score']) {
return 0;
}
return $a['score'] > $b['score'] ? 1 : -1;
}

usort($array, 'cmpByScore');

关于排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1133653/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com