Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Created March 30, 2018 06:54
Show Gist options
  • Select an option

  • Save wiyoe/645a545278b7d48b6934b07fc964bf7c to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/645a545278b7d48b6934b07fc964bf7c to your computer and use it in GitHub Desktop.
PHP constants
class A
{
const foo = 'bar';
public function getConstant( $const )
{
return constant('self::' . $const);
}
}
$classA = new A();
// Returns bar
echo $classA->getConstant( 'foo' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment