drbz99867 2017-07-15 09:16
浏览 50
已采纳

如何将foreach循环数据存储到另一个模型中?

I want to store my foreach loop data into another variable. The problem is that I can store data into database but when I dd() the output it only shows the last data assigned to the model.

How do I get the the array data from the new model?

foreach ($carts as $cart)
{
    $buy = new Buy();               
    $buy->product_id = $cart->product_id;
    $buy->user_id = $cart->user_id;
    $buy->price = $cart->price;
    $buy->extened = $cart->extened;
    $buy->installation = $cart->installation;
    $buy->support = $cart->support;             
    $buy->feature_image = $cart->feature_image;
    $buy->name = $cart->name;
    $buy->save();               
}

dd($buy);  // it returns only last inserted data ..
  • 写回答

1条回答 默认 最新

  • doushen1026 2017-07-15 09:27
    关注

    Of course, you will get the latest inserted data. Use the following code to get all the inserted Data. It is because at last execution of the foreach loop, $buy will have the latest $cart info.

    You can use the following code to get all the Buy models. We are going to create an empty array and add $buy into the array.

    $buys = array(); // I don't care about the name of the array lol.
    foreach ($carts as $cart)
    {
        $buy = new Buy();               
        $buy->product_id = $cart->product_id;
        $buy->user_id = $cart->user_id;
        $buy->price = $cart->price;
        $buy->extened = $cart->extened;
        $buy->installation = $cart->installation;
        $buy->support = $cart->support;             
        $buy->feature_image = $cart->feature_image;
        $buy->name = $cart->name;
        $buy->save();
    
        array_push($buys,$buy);        
    }
    

    It will store every record in $buys array and then you can do whatever you want to do with that array.

    Let me know if this is what you wanted. Let me know if you have any more questions.

    UPDATE: You can run foreach loop on $buys to display/update/delete entries.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况
  • ¥15 画两个图 python或R