Skip to content

Instantly share code, notes, and snippets.

@flavioheleno
Created March 16, 2022 20:46
Show Gist options
  • Save flavioheleno/033a23748aa8607fecb27642320ead31 to your computer and use it in GitHub Desktop.
Save flavioheleno/033a23748aa8607fecb27642320ead31 to your computer and use it in GitHub Desktop.
<?php
function check(int &$val): Generator {
while ($val === 0) {
yield 1;
}
}
$var = 0;
$loop = 0;
foreach (check($var) as $dummy) {
// do something cool here
echo 'Loop: ', $loop, PHP_EOL;
// when should we leave?
if (++$loop > 10) {
$var = 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment