gpt4 book ai didi

PHP 相当于 lodash/underscore 中的 max 函数

转载 作者:行者123 更新时间:2023-12-04 14:07:44 24 4
gpt4 key购买 nike

是否有与 max 等效的 PHP v5.5?对于 lodash/下划线?

基本上我希望能够做类似这样的事情:

$characters = [
{ 'name': 'barney', 'age': 36 },
{ 'name': 'fred', 'age': 40 }
];

max($characters, 'age');
// → { 'name': 'fred', 'age': 40 };

最佳答案

Underscore 有一个端口叫做 Underscore.php它提供了 max 函数(以及许多其他 Underscore 函数)。

来自其documentation :

$stooges = array(
array('name'=>'moe', 'age'=>40),
array('name'=>'larry', 'age'=>50),
array('name'=>'curly', 'age'=>60)
);
__::max($stooges, function($stooge) { return $stooge['age']; });
// array('name'=>'curly', 'age'=>60)

关于PHP 相当于 lodash/underscore 中的 max 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24046873/

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