Created
December 12, 2012 00:56
-
-
Save stovak/4263884 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 | |
echo php_uname('s');/* Operating system name */ | |
echo "<br />"; | |
echo php_uname('n');/* Host name */ | |
echo "<br />"; | |
echo php_uname('r');/* Release name */ | |
echo "<br />"; | |
echo php_uname('v');/* Version information */ | |
echo "<br />"; | |
echo php_uname('m');/* Machine type */ | |
echo "<br />"; | |
echo PHP_OS;/* constant will contain the operating system PHP was built on */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment