mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
15 lines
348 B
PHP
15 lines
348 B
PHP
<?php
|
||
spl_autoload_register();
|
||
|
||
$array = ['первый',
|
||
'второй',
|
||
'третий',
|
||
'четвертый',
|
||
'пятый'];
|
||
|
||
$collection = new Iterators\MyIterator($array);
|
||
|
||
foreach ($collection as $key => $value) {
|
||
echo "Элемент с индексом $key и значением $value<br />";
|
||
}
|