Created
May 1, 2018 01:27
-
-
Save ephsmith/c0f9591cf13abf272226d295bd88e88d to your computer and use it in GitHub Desktop.
Print all PHP Environment Variables
This file contains hidden or 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
<!DOCTYPE html> | |
<!-- Contrbuted by GS --> | |
<html><head></head><body> | |
<?php | |
while (list($var,$value) = each ($_ENV)) { | |
echo "$var => $value <br />"; | |
} | |
?> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment