Skip to content

Instantly share code, notes, and snippets.

@kuzuha
Created November 22, 2011 17:48
Show Gist options
  • Save kuzuha/1386352 to your computer and use it in GitHub Desktop.
Save kuzuha/1386352 to your computer and use it in GitHub Desktop.
array filter on php 5.4
$it = new CallbackFilterIterator(
new ArrayIterator(range(1, 10)),
function($v){ return $v % 2 == 1;}
);
foreach($it as $value) {
var_dump($value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment