获取最后保存的条目的 id
Posted
技术标签:
【中文标题】获取最后保存的条目的 id【英文标题】:Get the id of the last saved entry 【发布时间】:2018-10-09 14:34:52 【问题描述】:保存只给出真或假。
$query = (new Item())->fill([
'first'=>$first,
'second'=>$second
])->save();
$lastInsertId = $query->id;
//does not work...
return ['status'=>true];
【问题讨论】:
请将您的问题翻译成英文,以便我们为您提供帮助 (: 【参考方案1】:请改用create
function。
$item = Item::create([
'first' => $first,
'second' => $second
]);
$id = $item->id;
【讨论】:
以上是关于获取最后保存的条目的 id的主要内容,如果未能解决你的问题,请参考以下文章