Show sourcecode
The following files exists in this folder. Click to view.
Webbsrvprg/ovningar/php_funktioner/
php_funktioner_1.php
php_funktioner_2.php
php_funktioner_3.php
php_funktioner_4.php
php_funktioner_5.php
php_funktioner_6.php
php_funktioner_4.php
13 lines UTF-8 Windows (CRLF)
<?php
function findValue($a, $b, $c, $mode = "största") {
if ($mode === "minsta") {
return min($a, $b, $c);
}
return max($a, $b, $c);
}
// Exempelanrop
echo findValue(5, 10, 3); // Returnerar största värdet: 10
echo "\n";
echo findValue(5, 10, 3, "minsta"); // Returnerar minsta värdet: 3
?>