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.4.0 - 5.4.30
Parse error: syntax error, unexpected ')', expecting :: (T_PAAMAYIM_NEKUDOTAYIM) in /in/Fggg8 on line 16
Process exited with code 255.
Output for 5.3.0 - 5.3.28
Parse error: syntax error, unexpected ')', expecting T_PAAMAYIM_NEKUDOTAYIM in /in/Fggg8 on line 16
Process exited with code 255.

preferences:
195.73 ms | 1395 KiB | 67 Q