Created
April 14, 2019 00:33
-
-
Save otanodesignco/f86937dbbd776a39c5a2cccfd7dd1c2d to your computer and use it in GitHub Desktop.
Apache Mods
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
$ServerModules = ''; | |
$ApacheMods = apache_get_modules(); | |
foreach($ApacheMods as $mods) | |
{ | |
$ServerModules .= "${mods}<br />"; | |
} | |
echo $ServerModules; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment