Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbsrvprg/exercises/lekt2/

upg1.php
upg2.php
upg3.php
upg4.php
upg5.php
upg6.php

upg4.php

17 lines UTF-8 Windows (CRLF)
<?php

function min_o_max($tal1$tal2$tal3$operation "största") {
    if (
$operation === "minsta") {
        return 
min($tal1$tal2$tal3); 
    } else {
        return 
max($tal1$tal2$tal3); 
    }
}
$resultat_största min_o_max(125633);
echo 
"Max: " $resultat_största "\n";


$resultat_minsta min_o_max(125633"minsta");
echo 
"Min: " $resultat_minsta "\n";
?>