<?php $jsonString = '{ "order": { "id": "5RTQNACF", "created_at": "2012-12-09T21:23:41-08:00", "status": "completed", "total_btc": { "cents": 100000000, "currency_iso": "BTC" }, "custom": "order1234" } }'; $array = json_decode($jsonString, true); print_r($array); extract($array); echo $order['custom']; echo "\n"; extract($order); echo $id;
You have javascript disabled. You will not be able to edit any code.