我尝试将一个值设置为另一个数组。 我有这种类型的两个数组。
Array
(
[0] => test1
[1] => test2
)
Array
(
[0] => 351
[1] => 352
[2] => 353
[3] => 354
[4] => 355
[5] => 356
)
现在我想做一些事情,比如在test1上设置第二个数组的前三个值,并将第二个数组中的另外三个值设置为test2。
test1 = 351,352,353
test2 = 354,355,356
有可能吗?
答案 0 :(得分:4)
试试这个:
$var = array(0=> "test1",1=> "test2");
$vals = array(0 => 351,1 => 352,2 => 353,3 => 354,4 => 355,5 => 356);
$res = array_combine($var,array_map('implode', array_fill(0, count(array_chunk($vals,3)), ','), array_chunk($vals,3)));
echo "<pre>";
print_r($res);
输出:
Array
(
[test1] => 351,352,353
[test2] => 354,355,356
)
编辑:根据评论“此类型输出我需要数组([0] =&gt; 351,352,353 [1] =&gt; 354,355,356)”
$vals = array(0 => 351,1 => 352,2 => 353,3 => 354,4 => 355,5 => 356);
$res = array_map('implode', array_fill(0, count(array_chunk($vals,3)), ','), array_chunk($vals,3));
echo "<pre>";
print_r($res);
输出:
Array
(
[0] => 351,352,353
[1] => 354,355,356
)