Jak dekodować JSON i ponownie połączyć w PHP

<?php
$array[] = json_decode($json1, true);
$array[] = json_decode($json2, true);
?>
Troubled Turkey