dsk95913 2012-09-06 13:29
浏览 67
已采纳

具有多个叶节点的PHP Flatten Array

What is the best way to flatten an array with multiple leaf nodes so that each full path to leaf is a distinct return?

array("Object"=>array("Properties"=>array(1, 2)));

to yield

  1. Object.Properties.1
  2. Object.Properties.2

I'm able to flatten to Object.Properties.1 but 2 does not get processed with recursive function:

function flattenArray($prefix, $array)
{
    $result = array();
    foreach ($array as $key => $value)
    {
        if (is_array($value))
            $result = array_merge($result, flattenArray($prefix . $key . '.', $value));
        else
            $result[$prefix . $key] = $value;
    }   
    return $result;
}

I presume top down will not work when anticipating multiple leaf nodes, so either need some type of bottom up processing or a way to copy array for each leaf and process (althought that seems completely inefficient)

  • 写回答

3条回答 默认 最新

  • dpwbc42604 2012-09-06 14:00
    关注
    function flatten(array $data, $separator = '.') {
      $result = array();
      $stack = array();
      $path = null;
    
      reset($data);
      while (!empty($data)) {
        $key = key($data);
        $element = $data[$key];
        unset($data[$key]);  
        if (is_array($element)) {
          if (!empty($data)) {
            $stack[] = array($data, $path);
          }
          $data = $element;
          $path .= $key . $separator;
        } else {
          $result[$path . $key] = $element;
        }
    
        if (empty($data) && !empty($stack)) {
          list($data, $path) = array_pop($stack);
        }
      }
      return $result;
    }
    
    var_dump(flatten(array("Object"=>array("Properties"=>array(1, 2)))));
    

    Output:

    array(2) {
      ["Object.Properties.0"]=>
      int(1)
      ["Object.Properties.1"]=>
      int(2)
    }
    

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
手机看
程序员都在用的中文IT技术交流社区

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

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

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

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

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

客服 返回
顶部