Below is an example of the original JSON to PHP and the result.
Original JSON to PHP Example{ "header": "rum.table.column.txnname", "width": "60%", "dataElement": "yttags", "isPresent": true, "day": 60, "results": { "totalCT": 300, "name": "/api/yttags_monitor/*", "avgRT": 460.40, "throughput": 7.77, "totalRT": 230305 } }
And an example of how the online JSON to PHP works.
JSON to PHP Resultclass Results { public $totalCT; //int public $name; //String public $avgRT; //double public $throughput; //double public $totalRT; //int } class Application { public $header; //String public $width; //String public $dataElement; //String public $isPresent; //boolean public $day; //int public $results; //Results }