|
php_unameReturns information about the operating system PHP is running on Description
string php_uname(string
$mode = "a")
php_uname returns a description of the operating
system PHP is running on. This is the same string you see at the very
top of the phpinfo output. For the name of just
the operating system, consider using the On some older UNIX platforms, it may not be able to determine the current OS information in which case it will revert to displaying the OS PHP was built on. This will only happen if your uname() library call either doesn't exist or doesn't work. Parameters
Return ValuesReturns the description, as a string. Examples
Example #1 Some php_uname examples
There are also some related Predefined PHP constants that may come in handy, for example: Example #2 A few OS related constant examples
See Also
|