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

16 lines
207 B
PHP

<?php
$geradeZahlen = [];
$element = 0;
for ($i = 1; $i <=100; $i++) {
if ($i % 2 == 0) {
$geradeZahlen[$element] = $i;
$element++;
}
}
var_dump($geradeZahlen);
?>