This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/progp/24-12-4/kleinearray.php
2024-12-04 13:47:32 +01:00

20 lines
353 B
PHP

<?php
$sonnenstunden = [8.9, 5.7, 8.3, 9.0, 0.5];
echo "<h2>for</h2>";
for ($i = 0; $i < count($sonnenstunden); $i++) {
echo "$sonnenstunden[$i]<br>";
}
echo "<h1>-------------</h1>";
echo "<h2>foreach</h2>";
$sonnenstunden[]=4.8;
foreach ($sonnenstunden as $sonnen) {
echo "$sonnen<br>";
}
?>