doujiao7325 2016-12-23 10:51
浏览 178
已采纳

在php中将关联数组插入MySQL数据库

I have an array called $output which contains:

Array
(
    [0] => Array
        (
            [0] => J Arora
            [1] =>  India
        )

    [1] => Array
        (
            [0] => J Ramuj
            [2] =>  Russia
        )

    [2] => Array
        (
            [1] =>  KJ Tris
            [2] =>  Germany
        )

)

How can i insert these data into mysql database table like these

---------------
name   | country
-------|---------
J Arora|India
-------|--------
J Ramuj|Russia
-------|--------
KJ Tris|Germany
-------|--------

I am not able to fetch these values separately from given array as their index are not in sequence.

  • 写回答

5条回答 默认 最新

  • duanhuan2301 2016-12-23 10:58
    关注

    Just loop it with a foreach, and use PHP native functions like current() and end() to get your elements. Given that you just have two elements in your array at all times, this should work

    foreach ($output as $v) {
        echo current($v); // Name
        echo end($v); // Country
    }
    

    Adapt this to build your query and execute it inside the loop. Inside the loop you could do

    foreach ($output as $v) {
        $sql = "INSERT INTO table (`name`, `country`) VALUES ('".current($v)."', '".end($v)."')";
        // TODO: Execute query
    }
    

    You should also note that any query using variables should be using prepared statements with placeholders. Both MySQLi and PDO supports this.


    Using prepared statements

    Build the query before, and execute it as you loop it with the appropriate variables bound.

    Example with PDO:

    $stmt = $pdo->prepare("INSERT INTO table (`name`, `country`) VALUES (:name, :country)");
    foreach ($output as $v) {
        $stmt->execute(array("name" => current($v), "country" => end($v));
    }
    

    Example with MySQLi:

    $stmt = $mysqli->prepare("INSERT INTO table (`name`, `country`) VALUES (?, ?)");
    foreach ($output as $v) {
        $name = current($v);
        $country = end($v);
        $stmt->bind_param("ss", $name, $country);
        $stmt->execute();
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥100 求数学坐标画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站