A5sh.com - 全球挚爱极客社区
标题:
laravel集合函数—each()
[打印本页]
作者:
codefan
时间:
2024-1-15 13:28
标题:
laravel集合函数—each()
each() 用于迭代集合中的每个元素
$collection = collect(['one', 'two', 'three', 'four']);
$data = [];
$collection->each(function($item, $key) use(&$data) {
// 满足条件则 停止迭代
if($item == 'three' || $key == 2) {
return false;
}
$data[] = $item;
});
return $data; // ["one","two"]
复制代码
欢迎光临 A5sh.com - 全球挚爱极客社区 (https://a5sh.com/)
Powered by Discuz! X3.4