3v4l.org

run code in 300+ PHP versions simultaneously
<?php function maximum($list,$current) { if(empty($list)) return $current; $test = array_pop($list); $current = $current < $test ? $test : $current; return maximum($list, $current); } $list = array(2,1,4,2,6,77,2,1,3,44); echo maximum($list, 0);

preferences:
110.72 ms | 402 KiB | 5 Q