blob: e534dc400a2af6d8f22c5f44998cb5c6f36894ce [file]
<?php
function generatorKV() {
for ($i = 1; $i <= 3; $i++) {
// do something
yield $key => $value;
}
}
?>