3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = <<<JSON { "status": "OK", "page": { "rows": 5000, "more": 0, "number": 1 }, "accounts": [ { "connected": 0, "settings": { "link_first_study_only": "0", "update_study_source_on_notify": "1", "link_external_whitelist": "", "other_ingress_tags": "" }, "must_approve_upload": 0, "css": null, "share_via_gateway": 0, "password_expire": 90, "vanity": "medpics" } ] } JSON; $json = json_decode($json, true); function ksort_recursive(&$array) { ksort($array); foreach ($array as &$value) { if (is_array($value)) { ksort_recursive($value); } } } ksort_recursive($json); print_r($json);

preferences:
71.88 ms | 402 KiB | 5 Q