doubei5310 2018-01-14 17:10
浏览 24
已采纳

PHP多数组排序方法

If I have this array:

//$myarray
Array (
    [0] => Array (
        [b163cb25371a1b7c550d8f69fe211cc8] => Array (
            [unique_key]        => 14f74cf38563b889386beeec511033e2
            [thwepof_options]   => Array (
                [order_date] => Array (
                    [name] => order_date
                    [value] => 1
                    [label] => Szállítási nap
                    [options] =>
                )
            )
        )
    )
 )

How can I write a sorting method which sort the values by order_date [value]

I've tried first to get the array column like this but didn't got any return value:

<?php
$days = array_column($myarray[0]['thwepof_options'], 'value', 'order_date');
?>
  • 写回答

1条回答 默认 最新

  • doutinghou6980 2018-01-14 18:14
    关注

    You are skipping the 2nd level key. Here's a working version of your code:

    <?php
    $myarray = Array (
        0 => Array (
            'b163cb25371a1b7c550d8f69fe211cc8' => Array (
                'unique_key'        => '14f74cf38563b889386beeec511033e2',
                'thwepof_options'   => Array (
                    'order_date' => Array (
                        'name' => 'order_date',
                        'value' => 1,
                        'label' => 'Szállítási nap',
                        'options' => null
                    )
                )
            )
        )
     );
    
    $days = array_column($myarray[0]['b163cb25371a1b7c550d8f69fe211cc8']['thwepof_options'], 'value', 'order_date');
    
    print_r($days);
    

    Also, this thing looks to me like it would make more sense as an object.

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

报告相同问题?

悬赏问题

  • ¥15 fluentmeshing
  • ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
  • ¥15 盘古气象大模型调用(python)
  • ¥15 传人记程序做的plc 485从机程序该如何写
  • ¥15 已知手指抓握过程中掌指关节、手指各关节和指尖每一帧的坐标,用贝塞尔曲线可以拟合手指抓握的运动轨迹吗?
  • ¥50 libwebsockets 如何添加其他socket事件回调
  • ¥50 实现画布拖拽算子排布,通过flink实现算子编排计算,请提供思路
  • ¥15 esium自定义材质拉伸问题
  • ¥15 cmake+mingw使用<mysqlx/xdevapi.h>报错
  • ¥15 eNSP中防火墙的使用
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部