Skip to content

Instantly share code, notes, and snippets.

@speedmax
Created March 25, 2009 05:15
Show Gist options
  • Save speedmax/85302 to your computer and use it in GitHub Desktop.
Save speedmax/85302 to your computer and use it in GitHub Desktop.
class Openbet_Collection {
static function fromArray($array, $class) {
$instance = new Openbet_Collection;
foreach ($list as $item) {
$instance[] = new $class($item);
}
return $instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment