Description
string
php_uname ( void)
php_uname() returns a string
with a description of the operating system PHP is built
on.
範例 1. php_uname()
Example
if (substr(php_uname(), 0, 7) == "Windows") {
die ("Sorry, this script doesn't run on Windows.\n");
}
|
|