如何在Laravel 5中将字符串推入数组数组

时间:2018-06-30 08:33:56

标签: multidimensional-array php-7

我以前使用过Codeigiter,我可以使用

$var[index1][index2][] = $string;

在foreach循环中,它将继续推动 但是现在我收到错误消息“无法将字符串偏移量用作数组”

foreach ($grandpa as $index1 => $father){
   $newArr[$index1] = ''; 
   foreach ($father as $index2 => $son){
     $newArr[$index1][$index2][] = $string;
   }
}

这样我就拥有与爷爷相同的数组结构。

0 个答案:

没有答案