gpt4 book ai didi

php - 从收藏品中获取 key

转载 作者:行者123 更新时间:2023-12-02 03:39:37 26 4
gpt4 key购买 nike

如何从收藏品中获取 key ?

$posts= Post::all();

示例(不起作用):

$key = $posts->where('id', $id)->getKey();

最佳答案

all() 将返回一个没有键的集合。如果您谈论的是 0、1、2 等整数键,请使用 search() 方法:

$key = $posts->search(function($i) use($id) {
return $i->id === $id;
});

关于php - 从收藏品中获取 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49094933/

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