gpt4 book ai didi

php - iterator_to_array 截断输出

转载 作者:可可西里 更新时间:2023-10-31 23:07:20 24 4
gpt4 key购买 nike

FROM PHP DOC

iterator_to_array — Copy the iterator into an array
array iterator_to_array ( Traversable $iterator [, bool $use_keys = true ] )

它适用于所有 Traversable 接口(interface),但为什么我在以下代码中输入错误:

$data = array(
0 => array(
0 => 1,
),
1 => array(
0 => 2,
),
2 => array(
0 => 3,
1 => 4,
2 => 5,
),
3 => array(
0 => 6,
),
4 => array(
0 => 7,
),
);


$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($data));

echo PHP_EOL, iterator_count($it); // 7 total correct
echo PHP_EOL, implode(iterator_to_array($it)); //745 instead of 1234567
echo PHP_EOL, implode(iterator_to_array($it, true)); //745 instead of 1234567

但是

foreach($it as $v)
{
echo $v ;
}

输出

1234567

See online Demo

最佳答案

这是因为 $use_keys 默认为 true(自 5.1 起),在扁平化时破坏数组键。您需要像这样禁用设置:

print_r(iterator_to_array($it, false));
// ^^^^^

如果您运行的是 PHP < 5.2.1,那您基本上就完蛋了 ;-)

关于php - iterator_to_array 截断输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13988123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com