Webbserverprogrammering 1

Show sourcecode

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

webbsrvprg/exercises/funktioner/

funktioner.php
funktioner1.php
funktioner2.php
funktioner3.php
funktioner4.php
funktioner5.php
funktioner6.php

funktioner6.php

21 lines ASCII Windows (CRLF)
<!DOCTYPE html>
<html>
<body>

<?php
function write(...$numbers) {
  foreach (
$numbers as $n) {
    if (
$n == 0) {
      echo 
"0<br>";
    } else {
      echo 
"$n<br>";
    }
  }
}

write(5,7,4,5,2,574,1236,0);
?> 

</body>
</html>