Skip to content

Instantly share code, notes, and snippets.

@Ulv
Created November 20, 2013 11:39
Show Gist options
  • Save Ulv/7561800 to your computer and use it in GitHub Desktop.
Save Ulv/7561800 to your computer and use it in GitHub Desktop.
get class constants
public function get_class_constants()
{
$reflect = new ReflectionClass(get_class($this));
return $reflect->getConstants());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment