douba4275 2011-11-27 00:09
浏览 30
已采纳

从数组值查找数据库记录并将新键和值插入到数组中

I have an array, I would like to add another value to it from a database, using the [numo] value to lookup the record, here is the current array:

Array
(
    [0] => Array
        (
            [numo] => 667820161009
        )

    [1] => Array
        (
            [numo] => 667820112001
        )

and here is what I want to achieve:

Array
(
    [0] => Array
        (
            [id] => 33
            [numo] => 667820161009
        )

    [1] => Array
        (
            [id] => 34
            [numo] => 667820112001
        )

I presume that would have to loop through the array, nesting a SELECT query and then insert a new key and value, but I have no idea where to start and have searched and searched.

Many thanks in advance for you help

Stu

  • 写回答

2条回答 默认 最新

  • duanpanzhu2910 2011-11-27 00:13
    关注

    My guess without knowing anything about your DB (or specifically the table that this data comes from) would be:

    SELECT id FROM table WHERE numo = 667820112001
    

    Some PHP to go along with this:

    <?php
    $array = array(
        array(
            'numo' => 667820161009
        ),
        array(
            'numo' => 667820112001
        )
    );
    
    $stmt = $pdo->prepare('SELECT id FROM table WHERE numo = :numo');
    $stmt->bindColumn('id', $id);
    
    foreach($array as &$child) {
        $stmt->execute(array(
            ':numo' => $child['numo']
        ));
    
        $child['id'] = ($stmt->fetch(PDO::FETCH_BOUND)) ? $id : null;
    
        $stmt->closeCursor();
    }
    ?>
    

    However you can eliminate some queries with:

    <?php
    $array = array(
        array(
            'numo' => 667820161009
        ),
        array(
            'numo' => 667820112001
        )
    );
    
    $numos = array()
    foreach($array as $child) {
        $numos[] = $child['numo'];
    }
    
    $stmt = $pdo->prepare('SELECT id FROM table WHERE numo IN ('.implode(',', $numos).')');
    $array = $pdo->fetchAll();
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line