Comment décoder JSON et se combiner à nouveau en php

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