Google

NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.73 ">

php_uname

(PHP 4 >= 4.0.2)

php_uname --  Retourne les informations sur le système d'exploitation

Description

string php_uname ( void)

php_uname() retourne les informations sur le système d'exploitation sur lequel tourne PHP.

Exemple 1. Exemple php_uname()

<?php
if (substr(php_uname(), 0, 7) == "Windows") {
    die("Désolé, ce script ne fonctionne pas sous Windows.\n");
}
?>