3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = '[{ "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": 12, "time": "2018-11-12", "something": 7 }, { "id": 13, "time": "2018-11-08", "something": 7 }]'; $items = json_decode($json, true); $expectedArray = []; foreach ($items as $item) { $indexKey = substr($item['time'], 0, 7); if (!isset($expectedArray[$indexKey]) || $expectedArray[$indexKey]['time'] < $item['time']) $expectedArray[$indexKey] = $item; } print_r(json_encode($expectedArray));
Output for git.master, git.master_jit, rfc.property-hooks
{"2018-12":{"id":1,"time":"2018-12-16","pages_indexed":1024},"2018-11":{"id":12,"time":"2018-11-12","something":7}}

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:
72.91 ms | 401 KiB | 8 Q