Skip to content

Instantly share code, notes, and snippets.

@Crash--
Created December 4, 2012 14:08
Show Gist options
  • Save Crash--/4204272 to your computer and use it in GitHub Desktop.
Save Crash--/4204272 to your computer and use it in GitHub Desktop.
Optimize ?
public function __get($key)
{
$func = array($this, 'get' . ucwords($key));
if (\is_callable($func)) {
return call_user_func($func);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment