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条)

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置