dongroufan6846 2011-12-02 21:41
浏览 93
已采纳

按另一个数组的值对Php数组的数据进行排序

I've two PHP Arrays. The first one contains a sort order. The second one contains the data which i need to sort. I have no idea how to solve it…

What I'm trying to get is a list, sorted by the values of the first array (order.txt). Any suggestions?

<li>Item [2]</li>
<li>Item [1]</li>
<li>Item [3]</li>

Order

Array
(
    [0] => 2
    [1] => 1
    [2] => 3
)

Data

Array
(
    [0] => Array
        (
            [id] => 1
            [name] => 00134258.jpg
            [size] => 2787
        )

    [1] => Array
        (
            [id] => 2
            [name] => 80132454.jpg
            [size] => 2667
        )

    [2] => Array
        (
            [id] => 3
            [name] => 13134218.jpg
            [size] => 2787
        )

)

Here are the code which produces the arrays above:

<?php

    $order = file('order.txt');

    foreach ($order as $key => $value) {
        $order = json_decode($value, true);
    }

    print_r($order);


    $file = file('db.txt');

    foreach ($file as $key => $value) {
        $file_data[] = json_decode($value, true);
    }

    print_r($file_data);
?>

This are the json strings:

order.text

{"0":"2","1":"1","2":"3"}

db.txt

{"id":"1","name":"00134258.jpg","size":2787}
{"id":"2","name":"80132454.jpg","size":2667}
{"id":"3","name":"13134218.jpg","size":2787}
  • 写回答

2条回答 默认 最新

  • doutang7707 2011-12-02 21:54
    关注

    Make a new array where the keys are the id of the data, then loop through your order array and assign the values to an ordered array...

    <?php
      // loop through the file data
      foreach($file_data as $v){
        // assign values to new array with the data id as it's key
        $identified[$v['id']] = $v;
      }
      // loop through the order array
      foreach($order as $v){
        // pull the data values from the identified array by their key
        $ordered[] = $identified[$v];
      }
      // check it has all worked out as planned ;)
      print_r($ordered);
    ?>
    

    Alternatively... in line with @hakre's method, first create array ordered by index, and then use array_multisort method.

    <?php
      foreach($file_data as $v){
        $ordered[$v['id']] = $v;
      }
      array_multisort($order, $ordered);
      print_r($ordered);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示