I've got an collection:
$collection1 = [ 'file1', 'file2' ];
I want to add properties to collection1
$collection2 = [ 'property1' => 'value1', 'property2' => 'value2' ];
to have:
$collection1 = [ 'file1' => [ 'property1' => 'value1', 'property2' => 'value2' ],
'file2' => [ 'property1' => 'value1', 'property2' => 'value2' ] ];
how can I do it?
I tried something like:
$collection1[0]->push($collection2);
$collection1[1]->push($collection2);
But it's not working. I don't know why this is not working out-of-the-box like in javascript. :/