mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-15 23:31:10 +00:00
Глава 38: черновик
This commit is contained in:
14
iterators/use_myiterator.php
Normal file
14
iterators/use_myiterator.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
spl_autoload_register();
|
||||
|
||||
$array = ['первый',
|
||||
'второй',
|
||||
'третий',
|
||||
'четвертый',
|
||||
'пятый'];
|
||||
|
||||
$collection = new Iterators\MyIterator($array);
|
||||
|
||||
foreach($collection as $key => $value) {
|
||||
echo "Элемент с индексом $key и значением $value<br />";
|
||||
}
|
Reference in New Issue
Block a user