Created
March 27, 2012 20:15
-
-
Save erikreagan/2219906 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// get constants defined by the application | |
// All constants available | |
$constants = get_defined_constants(TRUE); | |
// just constants from the app in question | |
$app_constants = $constants['user']; | |
echo '<pre>'; | |
print_r($app_constants); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment