3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = json_decode('{"Name":"Consultation", "ServiceId":"1024", "Price":".00"}'); $b = json_decode('{"StartTime": "9:15AM", "ServiceId": "1024"}'); $c = (object)array_merge((array)$a, (array)$b); var_dump($c); $a = json_decode('{"Name":"Consultation", "ServiceId":"1024", "Price":".00"}', true); $b = json_decode('{"StartTime": "9:15AM", "ServiceId": "1024"}', true); $c = array_merge($a, $b); var_dump($c);

preferences:
45.26 ms | 402 KiB | 5 Q