- var_dump: documentation ( source)
- get_defined_constants: documentation ( source)
- define: documentation ( source)
<?php
define('constant', 'value');
define('MyClass::constant', 'value');
$constants = get_defined_constants(true);
if (isset($constants['user'])) {
var_dump($constants['user']);
}