This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sgd/ysqld/ysql04d/funktion_num_schleife.php
T

15 lines
220 B
PHP

<?php
function summiere(){
$summe = 0;
for($i = 0; $i < func_num_args(); $i++){
$summe += func_get_arg($i);
}
echo "<p>$summe</p>\n";
}
summiere(1,5,7,2,4,2,5,6,4,9,7,5);
?>