Skip to content

Instantly share code, notes, and snippets.

@domwom
Created April 29, 2009 12:45
Show Gist options
  • Save domwom/103745 to your computer and use it in GitHub Desktop.
Save domwom/103745 to your computer and use it in GitHub Desktop.
map iteratables in php
public function collect($function)
{
$result = array();
foreach ($this as $key => $value) {
array_push($result,call_user_func(array($value,$function),$value));
}
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment