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/rueckgabe_wert.php
T

16 lines
231 B
PHP

<?php
function summiere($zahlen){
$summe = 0;
foreach($zahlen as $wert) {
$summe += $wert;
}
return $summe;
}
$summe = summiere(array(1,5,7,2,4,2,5,6,4,9,7,5));
echo "<p>$summe</p>\n";
?>