3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr = array(a,b,c,d,e,f,g,h,i,j,k,l); $result = array(); $prev_value = array('value' => null, 'amount' => null); foreach ($arr as $val) { if ($prev_value['value'] != $val) { unset($prev_value); $prev_value = array('value' => $val, 'amount' => 0); $result[] =& $prev_value; } $prev_value['amount']++; } print_r($result);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Fatal error: Uncaught Error: Undefined constant "a" in /in/1QfU5:2 Stack trace: #0 {main} thrown in /in/1QfU5 on line 2
Process exited with code 255.
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 Fatal error: Uncaught Error: Undefined constant "a" in /in/1QfU5:2 Stack trace: #0 {main} thrown in /in/1QfU5 on line 2
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant a - assumed 'a' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant b - assumed 'b' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant c - assumed 'c' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant d - assumed 'd' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant e - assumed 'e' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant f - assumed 'f' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant g - assumed 'g' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant h - assumed 'h' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant i - assumed 'i' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant j - assumed 'j' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant k - assumed 'k' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Warning: Use of undefined constant l - assumed 'l' (this will throw an Error in a future version of PHP) in /in/1QfU5 on line 2 Array ( [0] => Array ( [value] => a [amount] => 1 ) [1] => Array ( [value] => b [amount] => 1 ) [2] => Array ( [value] => c [amount] => 1 ) [3] => Array ( [value] => d [amount] => 1 ) [4] => Array ( [value] => e [amount] => 1 ) [5] => Array ( [value] => f [amount] => 1 ) [6] => Array ( [value] => g [amount] => 1 ) [7] => Array ( [value] => h [amount] => 1 ) [8] => Array ( [value] => i [amount] => 1 ) [9] => Array ( [value] => j [amount] => 1 ) [10] => Array ( [value] => k [amount] => 1 ) [11] => Array ( [value] => l [amount] => 1 ) )
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20
Notice: Use of undefined constant a - assumed 'a' in /in/1QfU5 on line 2 Notice: Use of undefined constant b - assumed 'b' in /in/1QfU5 on line 2 Notice: Use of undefined constant c - assumed 'c' in /in/1QfU5 on line 2 Notice: Use of undefined constant d - assumed 'd' in /in/1QfU5 on line 2 Notice: Use of undefined constant e - assumed 'e' in /in/1QfU5 on line 2 Notice: Use of undefined constant f - assumed 'f' in /in/1QfU5 on line 2 Notice: Use of undefined constant g - assumed 'g' in /in/1QfU5 on line 2 Notice: Use of undefined constant h - assumed 'h' in /in/1QfU5 on line 2 Notice: Use of undefined constant i - assumed 'i' in /in/1QfU5 on line 2 Notice: Use of undefined constant j - assumed 'j' in /in/1QfU5 on line 2 Notice: Use of undefined constant k - assumed 'k' in /in/1QfU5 on line 2 Notice: Use of undefined constant l - assumed 'l' in /in/1QfU5 on line 2 Array ( [0] => Array ( [value] => a [amount] => 1 ) [1] => Array ( [value] => b [amount] => 1 ) [2] => Array ( [value] => c [amount] => 1 ) [3] => Array ( [value] => d [amount] => 1 ) [4] => Array ( [value] => e [amount] => 1 ) [5] => Array ( [value] => f [amount] => 1 ) [6] => Array ( [value] => g [amount] => 1 ) [7] => Array ( [value] => h [amount] => 1 ) [8] => Array ( [value] => i [amount] => 1 ) [9] => Array ( [value] => j [amount] => 1 ) [10] => Array ( [value] => k [amount] => 1 ) [11] => Array ( [value] => l [amount] => 1 ) )

preferences:
286.59 ms | 408 KiB | 355 Q