4

Laravel Collections 有没有办法用键“命名空间”来展平数组。就像是:

$a = collect([
    'id' => 1,
    'data' => [
        'a' => 2,
        'b' => 3
    ]
]);

$a = $a->flattenWithKeysNamespace(); // <-- this does not exists

// Should returns: 
// ['a' => 1, 'data.b' => 2, 'data.c' => 3]; // <-- I would like this.

我知道我可以在原始 PHP 中或使用一些 Collection 函数的程序集来做到这一点,但有时我会错过 Laravel Collection 文档中的某些内容。那么 Collection 函数有没有一种简单的方法来做到这一点?

4

2 回答 2

1

我认为你是对的,没有“Laravel 方式”可以做到这一点。如果您愿意将您的转换为数组,那么像这样的答案显示了一种在 PHP 中执行此操作的方法Collection,但是由于您提到原始 PHP,我假设您已经找到了这种解决方案。

我认为使用方法最好的Collection办法是编写一个与我链接的函数类似的函数,但是flatMap()当你的元素也是一个集合时,使用类似的函数并递归调用你的函数。

于 2017-05-11T14:03:45.287 回答
0

如果您不关心转换的深度级别,我认为对您来说最简单的选择就是array_dot辅助函数。如果您想要更精细地控制递归的深度,以及是否有点分隔的数组键,我已经编写了一个可以做到这一点的集合宏。通常collect($array)->collapse()维护字符串键,但非增量数字键仍然会丢失,即使强制类型为字符串。我最近需要维护它们。

把它放在你的AppServiceProvider::boot()方法中:

    /**
     * Flatten an array while keeping it's keys, even non-incremental numeric ones, in tact.
     *
     * Unless $dotNotification is set to true, if nested keys are the same as any
     * parent ones, the nested ones will supersede them.
     *
     * @param int $depth How many levels deep to flatten the array
     * @param bool $dotNotation Maintain all parent keys in dot notation
     */
    Collection::macro('flattenKeepKeys', function ($depth = 1, $dotNotation = false) {
        if ($depth) {
            $newArray = [];
            foreach ($this->items as $parentKey => $value) {
                if (is_array($value)) {
                    $valueKeys = array_keys($value);
                    foreach ($valueKeys as $key) {
                        $subValue = $value[$key];
                        $newKey = $key;
                        if ($dotNotation) {
                            $newKey = "$parentKey.$key";
                            if ($dotNotation !== true) {
                                $newKey = "$dotNotation.$newKey";
                            }

                            if (is_array($value[$key])) {
                                $subValue = collect($value[$key])->flattenKeepKeys($depth - 1, $newKey)->toArray();
                            }
                        }
                        $newArray[$newKey] = $subValue;
                    }
                } else {
                    $newArray[$parentKey] = $value;
                }
            }

            $this->items = collect($newArray)->flattenKeepKeys(--$depth, $dotNotation)->toArray();
        }

        return collect($this->items);
    });

然后你可以打电话collect($a)->flattenKeepKeys(1, true);并取回你所期望的。

于 2017-08-28T15:29:08.570 回答