Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ephsmith/c0f9591cf13abf272226d295bd88e88d to your computer and use it in GitHub Desktop.
Save ephsmith/c0f9591cf13abf272226d295bd88e88d to your computer and use it in GitHub Desktop.
Print all PHP Environment Variables
<!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