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