3v4l.org

run code in 300+ PHP versions simultaneously
<?php $results = [ [ 'id' => '1000', 'name' => 'Nurten', 'pId' => '26', 'anzahl' => '1', 'pName' => 'Fitness-Teller', 'preis' => '12.90', ], [ 'id' => '1001', 'name' => 'Kutscha', 'pId' => '94', 'anzahl' => '1', 'pName' => 'Pizza Parma', 'preis' => '12.90', ], [ 'id' => '1001', 'name' => 'Kutscha', 'pId' => '75', 'anzahl' => '1', 'pName' => 'Pizza Margherita', 'preis' => '6.50', ], ]; $out = []; foreach ($results as $result) { if (!isset($out[$result['id']])) { $out[$result['id']] = array_filter($result, function($key) { return in_array($key, ['id','name']); }, ARRAY_FILTER_USE_KEY); } $out[$result['id']]['products'][] = array_filter($result, function($key) { return in_array($key, ['pId','anzahl','pName','preis']); }, ARRAY_FILTER_USE_KEY); } print_r(array_values($out));
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Array ( [0] => Array ( [id] => 1000 [name] => Nurten [products] => Array ( [0] => Array ( [pId] => 26 [anzahl] => 1 [pName] => Fitness-Teller [preis] => 12.90 ) ) ) [1] => Array ( [id] => 1001 [name] => Kutscha [products] => Array ( [0] => Array ( [pId] => 94 [anzahl] => 1 [pName] => Pizza Parma [preis] => 12.90 ) [1] => Array ( [pId] => 75 [anzahl] => 1 [pName] => Pizza Margherita [preis] => 6.50 ) ) ) )
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Array ( [0] => Array ( [id] => 1000 [name] => Nurten [products] => Array ( [0] => Array ( [pId] => 26 [anzahl] => 1 [pName] => Fitness-Teller [preis] => 12.90 ) ) ) [1] => Array ( [id] => 1001 [name] => Kutscha [products] => Array ( [0] => Array ( [pId] => 94 [anzahl] => 1 [pName] => Pizza Parma [preis] => 12.90 ) [1] => Array ( [pId] => 75 [anzahl] => 1 [pName] => Pizza Margherita [preis] => 6.50 ) ) ) )
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38
Notice: Use of undefined constant ARRAY_FILTER_USE_KEY - assumed 'ARRAY_FILTER_USE_KEY' in /in/DTCXH on line 38 Warning: array_filter() expects at most 2 parameters, 3 given in /in/DTCXH on line 38 Notice: Use of undefined constant ARRAY_FILTER_USE_KEY - assumed 'ARRAY_FILTER_USE_KEY' in /in/DTCXH on line 43 Warning: array_filter() expects at most 2 parameters, 3 given in /in/DTCXH on line 43 Notice: Use of undefined constant ARRAY_FILTER_USE_KEY - assumed 'ARRAY_FILTER_USE_KEY' in /in/DTCXH on line 38 Warning: array_filter() expects at most 2 parameters, 3 given in /in/DTCXH on line 38 Notice: Use of undefined constant ARRAY_FILTER_USE_KEY - assumed 'ARRAY_FILTER_USE_KEY' in /in/DTCXH on line 43 Warning: array_filter() expects at most 2 parameters, 3 given in /in/DTCXH on line 43 Notice: Use of undefined constant ARRAY_FILTER_USE_KEY - assumed 'ARRAY_FILTER_USE_KEY' in /in/DTCXH on line 43 Warning: array_filter() expects at most 2 parameters, 3 given in /in/DTCXH on line 43 Array ( [0] => Array ( [products] => Array ( [0] => ) ) [1] => Array ( [products] => Array ( [0] => [1] => ) ) )
Output for 4.4.2 - 4.4.9, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/DTCXH on line 4
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1, 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[' in /in/DTCXH on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error in /in/DTCXH on line 4
Process exited with code 255.

preferences:
337.09 ms | 401 KiB | 465 Q