Skip to content

Instantly share code, notes, and snippets.

@bayleedev
Created December 10, 2012 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bayleedev/4252883 to your computer and use it in GitHub Desktop.
Save bayleedev/4252883 to your computer and use it in GitHub Desktop.
<?php
class foo {
const bar = 'foobar';
}
$name = 'bar';
if (defined('foo::' . $name)) {
echo constant('foo::' . $name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment