Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は問題があります。私は2つの配列を持っており、次のように1つを別のものに入れる必要があります:
array('1'=>1,'2'=>2,'3'=>array());
誰かがそれを解決する方法をアドバイスできますか?
最初の配列が
$first = array('1'=>1,'2'=>2)
そして2つ目は
$second = array()
次に、次のように追加します
$first[] = $second
2番目の場合
$second[3] = array();
次に、array_mergeが必要です
$first = array_merge($first,$second)
そのリンクの左側にはあらゆる種類の配列関数があり、非常に便利です。