I'm trying to merge two arrays. Well, kind of. Basically, I'm assigning values to a multidimensional array
Code: Select all
<?php
$array['root'][1][6][0] = 'Some value';
?>For example, say this second array looks like this:
Code: Select all
<?php
$something = array('0' => 3, '1' => 7);
?>Code: Select all
<?php
$array['root'][3][7][1][6][0] = 'Some Value';
?>Thanks everyone
klarinetking