PHP 8.5.0 Alpha 4 available for testing

Voting

: min(two, two)?
(Example: nine)

The Note You're Voting On

dn dot permyakov at gmail dot com
6 years ago
Easy example for understanding:
<?php

$iterator
= new ParentIterator(
new
RecursiveArrayIterator(
array(array(
1, 2, 3), 'A', 'B', 'C')
)
);

foreach (
$iterator as $recursive) {
foreach (
$recursive as $value) {
echo
$value . PHP_EOL;
}
}
?>

1
2
3

<< Back to user notes page

To Top