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