dqby43944 2017-05-06 02:40
浏览 55
已采纳

如何在CI中将多维数组插入数据库?

I have this array.

Array
(
[customer_id] => Array
    (
        [customer_id] => 132
    )

[file_name] => Array
    (
        [0] => ht5appletv11.png
        [1] => twitter-100px11.png
    )

[file_path] => Array
    (
        [0] => C:/xampp/htdocs/maintenance_assurance_sys/uploads/ht5appletv11.png
        [1] => C:/xampp/htdocs/myproject/uploads/twitter-100px11.png
    )

)

I want to insert these data into database with Row by Row in CI.But the customer_id is always same in each row. file_name and file_path will change. For example:

How can i do that?

+---------------------------------------------------------------------+
|  customer_id     | file_name                |file_path              |
|   132            |  ht5appletv11.png        | C:/xampp/htodcs/..... |
|   132            |  twitter-100px11.png     | C:/xampp/htodcs/..... |
+---------------------------------------------------------------------+

Here is my Code...

function insertUploadedFiles($data)
{   

    foreach ($data as $fileData)
    {   
        $datas[] = array(
            'customer_id' => $fileData['customer_id'],
            'file_name' => $fileData['file_name'],
            'file_path' => $fileData['file_path']
        );

    }
    $this->db->insert_batch('t_customer_file_ref', $datas);
}

But it's only get customer_id and the file_name & file_path show error like this.

Message: Undefined index: file_name

Undefined index: file_path

  • 写回答

1条回答 默认 最新

  • douna6802 2017-05-06 03:00
    关注

    Please try the below code,

    function insertUploadedFiles($data)
    {   
    
    foreach ($data['file_name'] as $key => $fileData)
    {   
          $datas[] = array(
              'customer_id' => $data['customer_id']['customer_id'],
              'file_name' => $fileData,
              'file_path' => $data['file_path'][$key]
          );
    
      }
      $this->db->insert_batch('t_customer_file_ref', $datas);
    }
    

    I assume that both the file_name and file_path elements will have same indexes like 0, 1, 2 etc.,

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

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分