芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/azjezz/psl/src/Psl/Dict/flatten.php
Dict(0 => 9, 1 => 8) * * Dict\flatten([[0 => 1, 1 => 2], [2 => 9, 3 => 8]]) * => Dict(0 => 1, 1 => 2, 2 => 9, 3 => 8) * * @template Tk of array-key * @template Tv * * @param iterable
> $iterables * * @return array
*/ function flatten(iterable $iterables): array { $result = []; foreach ($iterables as $iterable) { foreach ($iterable as $key => $value) { $result[$key] = $value; } } return $result; }