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_func_get_args.php

17 lines
274 B
PHP

<?php
function summiere(){
$sumanden = func_get_args();
$summe = 0;
if(is_array($sumanden)) {
foreach($sumanden as $wert) {
$summe += $wert;
}
}
echo "<p>$summe</p>";
}
summiere(1,5,7,2,4,2,5,6,4,9,7,5);
?>