mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-07-25 17:13:08 +00:00
10 lines
148 B
PHP
10 lines
148 B
PHP
<?php
|
|
$arr = [
|
|
'first' => '1',
|
|
'second' => '2',
|
|
'third' => '3'
|
|
];
|
|
foreach ($arr as $index => $val) {
|
|
echo "$index = $val <br />";
|
|
}
|