3v4l.org

run code in 300+ PHP versions simultaneously
<?php $json = '{"locations":"Bangalore","requestor_department":"DC","requestor_department_count":"3"}{"locations":"Bangalore","requestor_department":"EBA","requestor_department_count":"1"}{"locations":"Chennai","requestor_department":"DC","requestor_department_count":"34"}{"locations":"Chennai","requestor_department":"EBA","requestor_department_count":"20"}{"locations":"Cochin","requestor_department":"DC","requestor_department_count":"4"}{"locations":"Cochin","requestor_department":"EBA","requestor_department_count":"2"}{"locations":"Hyderabad","requestor_department":"DC","requestor_department_count":"58"}{"locations":"Hyderabad","requestor_department":"EBA","requestor_department_count":"18"}{"locations":"Kolkata","requestor_department":"DC","requestor_department_count":"37"}{"locations":"Kolkata","requestor_department":"EBA","requestor_department_count":"8"}{"locations":"Pune","requestor_department":"DC","requestor_department_count":"26"}{"locations":"Pune","requestor_department":"EBA","requestor_department_count":"11"}'; $array = json_decode($json, true); $dcData = array(); $ebaData = array(); foreach($array as $row) { if($row['requestor_department'] == "DC") array_push($dcData, $row['requestor_department_count']); if($row['requestor_department'] == "EBA") array_push($ebaData, $row['requestor_department_count']); } echo json_encode($dcData); echo json_encode($ebaData); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: foreach() argument must be of type array|object, null given in /in/q89G2 on line 5 [][]

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