3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * @param array $array * @param string $column * * @return array */ function mergeOnEquals(array $array, $column) { $result = []; foreach ($array as $subArray) { $index = $subArray[$column]; if (isset($result[$index])) { foreach($subArray as $key => $value) { if (!isset($result[$index][$key])) { $result[$index][$key] = $value; } elseif ($result[$index][$key] != $value) { $result[$index][$key] .= ",$value"; } } } else { $result[$index] = $subArray; } } return array_values($result); } $array = [ [ 'carriertype' => null, 'radiotype' => 'RRUS 12 B2', 'serialnumber' => 'CF82943634', 'market' => 'Detroit Westland - DET 5', 'bts' => 225011, 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 16, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => 'RRU-7', 'userlabletext' => '225011_1_4', 'flag' => 'Yes', ], [ 'carriertype' => null, 'radiotype' => 'RRUS 12 B2', 'serialnumber' => 'CF82961338', 'market' => 'Detroit Westland - DET 5', 'bts' => 225011, 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 15, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => 'RRU-8', 'userlabletext' => '225011_2_4', 'flag' => 'Yes', ], [ 'carriertype' => null, 'radiotype' => 'RRUS 12 B2', 'serialnumber' => 'CF82943628', 'market' => 'Detroit Westland - DET 5', 'bts' => '225011', 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 14, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => 'RRU-9', 'userlabletext' => '225011_3_4', 'flag' => 'Yes', ], [ 'radiotype' => null, 'carriertype' => null, 'serialnumber' => null, 'market' => 'Detroit Westland - DET 5', 'bts' => 225011, 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 1, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => null, 'userlabletext' => '___B', 'flag' => 'Yes', ], [ 'radiotype' => null, 'carriertype' => null, 'serialnumber' => null, 'market' => 'Detroit Westland - DET 5', 'bts' => 225011, 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 1, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => null, 'userlabletext' => '___E', 'flag' => 'Yes', ], [ 'carriertype' => 'AWS', 'radiotype' => 'RRUS 12 B4', 'serialnumber' => 'CF81666912', 'market' => 'Detroit Westland - DET 5', 'bts' => 225011, 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 16, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => 'RRU-5', 'userlabletext' => '225011_2_2', 'flag' => 'Yes', ], [ 'carriertype' => 'AWS', 'radiotype' => 'RRUS 12 B4', 'serialnumber' => 'CF81666918', 'market' => 'Detroit Westland - DET 5', 'bts' => 225011, 'Host' => '225011_21_MILE_and_ROMEO_PLANK', 'resourceId' => 0, 'type' => 'XMU', 'port' => 14, 'EP_AuxPlugInUnit_AuxPlugInUnitId' => 'RRU-6', 'userlabletext' => '225011_3_2', 'flag' => 'Yes', ], ]; print_r(mergeOnEquals($array, 'port'));
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => Array ( [carriertype] => AWS [radiotype] => RRUS 12 B2,RRUS 12 B4 [serialnumber] => CF82943634,CF81666912 [market] => Detroit Westland - DET 5 [bts] => 225011 [Host] => 225011_21_MILE_and_ROMEO_PLANK [resourceId] => 0 [type] => XMU [port] => 16 [EP_AuxPlugInUnit_AuxPlugInUnitId] => RRU-7,RRU-5 [userlabletext] => 225011_1_4,225011_2_2 [flag] => Yes ) [1] => Array ( [carriertype] => [radiotype] => RRUS 12 B2 [serialnumber] => CF82961338 [market] => Detroit Westland - DET 5 [bts] => 225011 [Host] => 225011_21_MILE_and_ROMEO_PLANK [resourceId] => 0 [type] => XMU [port] => 15 [EP_AuxPlugInUnit_AuxPlugInUnitId] => RRU-8 [userlabletext] => 225011_2_4 [flag] => Yes ) [2] => Array ( [carriertype] => AWS [radiotype] => RRUS 12 B2,RRUS 12 B4 [serialnumber] => CF82943628,CF81666918 [market] => Detroit Westland - DET 5 [bts] => 225011 [Host] => 225011_21_MILE_and_ROMEO_PLANK [resourceId] => 0 [type] => XMU [port] => 14 [EP_AuxPlugInUnit_AuxPlugInUnitId] => RRU-9,RRU-6 [userlabletext] => 225011_3_4,225011_3_2 [flag] => Yes ) [3] => Array ( [radiotype] => [carriertype] => [serialnumber] => [market] => Detroit Westland - DET 5 [bts] => 225011 [Host] => 225011_21_MILE_and_ROMEO_PLANK [resourceId] => 0 [type] => XMU [port] => 1 [EP_AuxPlugInUnit_AuxPlugInUnitId] => [userlabletext] => ___B,___E [flag] => Yes ) )

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:
67.25 ms | 405 KiB | 8 Q