3v4l.org

run code in 300+ PHP versions simultaneously
<?php $first = $_GET['first']; $second = $_GET['second']; $third = $_GET['third']; //Your code here function smallest($first, $second, $third) { foreach(func_get_args() as $a_parameter) { if($a_parameter==intval($a_parameter)) // only if parameter is a number { if(!isset($minimum)) // for the first time paremeter is maximum { $minimum= $a_parameter; } if($a_parameter<$minimum) // for each parameter we check if its lower and set minimum { $minimum=$a_parameter; } } } return $minimum; } function largest($first, $second, $third) { foreach(func_get_args() as $a_parameter) { if($a_parameter==intval($a_parameter)) // only if parameter is a number { if(!isset($maximum)) // for the first time paremeter is maximum { $maximum= $a_parameter; } if($a_parameter>$maximum) // for each parameter we check if its greater and set maximum { $maximum=$a_parameter; } } } return $maximum; } $largest_number = largest($first, $second, $third); $smallest_number = smallest($first, $second, $third); echo "From the numbers you typed, the largest was $largest_number"; echo " and smallest $smallest_number"; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined array key "first" in /in/JNBTC on line 2 Warning: Undefined array key "second" in /in/JNBTC on line 3 Warning: Undefined array key "third" in /in/JNBTC on line 4 From the numbers you typed, the largest was and smallest

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
40.33 ms | 401 KiB | 8 Q