Show sourcecode
The following files exists in this folder. Click to view.
webbsrvprg/ovningar/funktioner/
funktioner.php
funktioner1.php
funktioner2.php
funktioner3.php
funktioner4.php
funktioner5.php
funktioner6.php
funktioner5.php
20 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html>
<body>
<?php
function medel($array) {
$average = 0;
foreach ($array as $i) {
$average += $i / count($array);
}
echo $average;
}
medel([5,7,4,5,2,574,1236,0]);
?>
</body>
</html>