3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array['addition'] = array(24, 12, 6); $array['subtraction'] = array(8, 4, 2); $array['multiplication'] = array(128, 32, 8); $array['division'] = array(2, 2, 2); $dups = array(); foreach($array as $key => $value){ $dups[$key] = array_count_values($value); } $currentHighest = 'addition'; foreach($dups as $type => $value){ foreach($value as $key => $value){ if($value > $currentHighest){ $currentHighest = $type } } }
Output for 5.3.0 - 5.3.28, 5.4.0 - 5.4.30
Parse error: syntax error, unexpected '}' in /in/1THYJ on line 20
Process exited with code 255.

preferences:
191.93 ms | 1395 KiB | 67 Q