I don't think that works quite right. Say you have this piece of code.
$sent = array("test" => 0,"test1" => 1);
$push = array("test2" => 2, "test3" => 3);
array_push($sent,$push)
If you go to access the array
$sent[test] == 0; //true
$sent[test1] == 1; //true
$sent[test2] == 2; //false. There is no such key "test2" in the $sent array.
The way I'm planning on using this is building an assoc. array based off of dynamic keys. Any idea how I can loop through a bunch of keys and build an assoc array out of those keys?