gpt4 book ai didi

php - laravel中如何使用foreach向数据库中添加数据

转载 作者:行者123 更新时间:2023-12-01 00:34:28 25 4
gpt4 key购买 nike

我想将post 表中的所有数据移动到CityPost 表中,我使用foreach 但为什么只有一个数据条目,

 $store = new CityPost;
$post = Post::all();
foreach($post as $p){
$store->user_id = 14;
$store->title = $v->title;
$store->desc = $v->desc;
$store->save();
}
dd($store);

我希望 PostCity 表中的所有 user_id 都是 14

最佳答案

您应该在 foreach 中创建 CityPost 模型:

       $post = Post::all();
foreach($post as $p){
$store = new CityPost;
$store->user_id = 14;
$store->title = $v->title;
$store->desc = $v->desc;
$store->save();
}
dd($store);

关于php - laravel中如何使用foreach向数据库中添加数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59062754/

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