Created
April 29, 2009 12:45
-
-
Save domwom/103745 to your computer and use it in GitHub Desktop.
map iteratables in php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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