gpt4 book ai didi

php - Laravel 从集合中获取 Id

转载 作者:行者123 更新时间:2023-12-03 09:01:26 24 4
gpt4 key购买 nike

Laravel 从集合中获取 Id

$collection = Test::whereDate('created_at', '=', $today)->where('cuid', $user->id)->where('month', date('m'))->get();        
echo "<pre>";
print_r($collection);
echo "</pre>";
exit();

如何从该集合返回 id

因为我想更新该特定 ID

最佳答案

如果user_id唯一,则使用first()而不是get()

$collection = Test::whereDate('created_at', '=', $today)->where('cuid', $user->id)->where('month', date('m'))->first();

然后像这样访问id

$id = $collection->id;

否则,您需要循环集合数组并从单个对象访问id

关于php - Laravel 从集合中获取 Id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49876432/

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