gpt4 book ai didi

php - 一个更好的 php array_merge

转载 作者:可可西里 更新时间:2023-11-01 13:46:13 24 4
gpt4 key购买 nike

<分区>

我正在寻求一种更好的方法,而无需为 $justPrices[$i] 的整数进行硬编码:

$pricesResult = array_merge($justPrices[0], $justPrices[1], $justPrices[2], $justPrices[3]);

$justPrices 是一个多维数组,每个数组包含 4 个“区间”价格。 $justPrices 的数据例如:

Array ( [0] => Array ( [0] => 40.95 [1] => 39.95 [2] => 39.45 [3] => 38.95 ) [1] => Array ( [0] => 45.80 [1] => 41.80 [2] => 41.50 [3] => 41.40 ) [2] => Array ( [0] => 45.95 [1] => 42.95 [2] => 41.95 [3] => 41.45 ) [3] => Array ( [0] => 50.00 [1] => 50.00 [2] => 50.00 [3] => 50.00 ) )

问题是 $justPrices 中数组的数量至少会从 2 到 10+ 不等。因此,我需要一种方法让 array_merge() 函数的参数根据 $justPrices 中数组的数量而变化。我打算使用这个简单的方法来获取 $justPrices 中的数组数量:

$justPricesMax = count($justPrices);

我可以写一个for循环,我可能仍然会,我只是想知道是否有更好的方法来实现表面上看起来相对简单的东西!

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