Skip to content

Instantly share code, notes, and snippets.

@viniciusalonso
Created September 2, 2019 02:54
Show Gist options
  • Save viniciusalonso/e249d73f4c3383ac7bb28cd2af19e52a to your computer and use it in GitHub Desktop.
Save viniciusalonso/e249d73f4c3383ac7bb28cd2af19e52a to your computer and use it in GitHub Desktop.
<?php
$iterator = test_generator();
echo $iterator->current() . "\n";
$iterator->next();
echo $iterator->current() . "\n";
$iterator->next();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment