Глава 11: черновик

This commit is contained in:
Igor Simdyanov
2022-04-18 08:53:24 +03:00
parent 86b8557090
commit 3cd701ff39
40 changed files with 306 additions and 0 deletions

9
arrays/foreach.php Normal file
View File

@ -0,0 +1,9 @@
<?php
$arr = [
'first' => '1',
'second' => '2',
'third' => '3'
];
foreach ($arr as $index => $val) {
echo "$index = $val <br />";
}