-1

PHPで追加の配列を直接追加する方法は?

たとえば、配列に2つのアイテムがあります

Array(
   [1] => Fruits

   [2] => Books

)

私のデータを仮定します..私は家と呼ばれる配列を持っています

House には、Fruits と Books の 2 つのデータが含まれています。

ここで、別の配列を使用して Fruits and Books に色を追加したいと思います。

私はこれが好きでした:

$house = $this->config->get("house");  //now I get the main array contains Fruits and Books

foreach($house as $house_content => value) // get the value for each eg. Fruits, Books
   if(!is_array($value)){ //check whether Fruits is an array cause I wanna add array of color into it
    $house[$house_content][red] = $value;  // can I do like this to make it create another array name [red] under the Fruits or Books?
  }

失敗してしまいました..本来は【フルーツ】しかないのに【フルーツ】【赤】にするにはどうすればいいですか?

4

2 に答える 2