3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str ='[{ "id": 1, "time": "2018-12-16", "pages_indexed": 1024 }, { "id": 2, "time": "2018-12-12", "something": 1024 }, { "id": 3, "time": "2018-12-09", "something": 7 }, { "id": 13, "time": "2018-11-08", "something": 7 }, { "id": 12, "time": "2018-11-12", "something": 7 }]'; $arr = json_decode($str, true); $time = array_column($arr, "time"); array_multisort($time, SORT_DESC, $arr); foreach(array_reverse($arr) as $sub){ $result[substr($sub["time"], 0, 7)]= $sub; } Var_dump($result);
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { ["2018-11"]=> array(3) { ["id"]=> int(12) ["time"]=> string(10) "2018-11-12" ["something"]=> int(7) } ["2018-12"]=> array(3) { ["id"]=> int(1) ["time"]=> string(10) "2018-12-16" ["pages_indexed"]=> int(1024) } }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
177.43 ms | 406 KiB | 5 Q