php repozitar
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
659 B

<?php
$adresy = array("index","gallery","startup","contact");
function genMenu()
{
echo "<ul>";
foreach ($GLOBALS["adresy"] as $url) {
echo '<li><a href="'.$url.'.php">'.$url.'</a></li>';
}
echo "</ul>";
}
//funkce pro vytvoření jednoduche CLI kalkulačky
function kalkulacka(int $c1, int $c2, string $s)
{
switch($s){ //specialni typ vybírání
case "scitani": // připad sčitaní
$vysledek = $c1+$c2; //sčítaní
break; //ukončení switch
case "odcitani":
$vysledek = $c1-$c2;
break;
}
return $vysledek;
}
?>