Skip to content

Instantly share code, notes, and snippets.

@weierophinney
Created December 13, 2011 21:25
Show Gist options
  • Save weierophinney/1473962 to your computer and use it in GitHub Desktop.
Save weierophinney/1473962 to your computer and use it in GitHub Desktop.
$constants = get_defined_constants();
array_walk(array_keys($constants), function($key) use (&$constants) {
if ('T_' != substr($key, 0, 2)) {
unset($constants[$key]);
}
});
var_export($constants);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment