Skip to content

Instantly share code, notes, and snippets.

@rgantt
Created August 26, 2011 21:46
Show Gist options
  • Save rgantt/1174506 to your computer and use it in GitHub Desktop.
Save rgantt/1174506 to your computer and use it in GitHub Desktop.
Closures in classes FTW
<?php
/** inside of a method */
$that = $this;
return $this->argmax( $candidates, function ( $w ) use ( $that ) {
$that->nwords[ $w ];
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment