Skip to content

Instantly share code, notes, and snippets.

@bombless
Created December 12, 2013 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bombless/7931981 to your computer and use it in GitHub Desktop.
Save bombless/7931981 to your computer and use it in GitHub Desktop.
<?
$list = function() use($array){ foreach($array as $i)if ($i > 0)yield $i; };
foreach($list as $a)echo $a;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment