Skip to content

Instantly share code, notes, and snippets.

@caironm
Created October 5, 2019 05:28
Show Gist options
  • Save caironm/c70aa936876176e00bc1747d2b02e7e8 to your computer and use it in GitHub Desktop.
Save caironm/c70aa936876176e00bc1747d2b02e7e8 to your computer and use it in GitHub Desktop.
Generator exemplo
<?php
function meuGenerator(){
yield 'valor1';
yield 'valor2';
yield 'valor3';
}
foreach (meuGenerator() as $yieldValor) {
echo $yieldValor, PHP_EOL;
}
/* A saída será:
valor1
valor2
valor3
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment