phpcredits> <php_sapi_name
Last updated: Fri, 03 Feb 2012

php_uname

(PHP 4 >= 4.0.2, PHP 5)

php_uname Retorna informação sobre o sistema operacional que o PHP foi construído

Descrição

string php_uname ( void )

php_uname() retorna uma string com a descrição do sistema operacional que o PHP foi construído. Se você quer apenas o nome do sistema operacional, considere usar a constante PHP_OS.

Exemplo #1 Alguns exemplos de php_uname()

<?php
echo php_uname();
echo 
PHP_OS;

/* Algumas saídas possíveis:
Linux localhost 2.4.21-0.13mdk #1 Fri Mar 14 15:08:06 EST 2003 i686
Linux

FreeBSD localhost 3.2-RELEASE #15: Mon Dec 17 08:46:02 GMT 2001
FreeBSD

Windows NT XN1 5.1 build 2600
WINNT
*/

if (strtoupper(substr(PHP_OS03)) === 'WIN') {
    echo 
'Este é um servidor usando!';
} else {
    echo 
'Este é um servidor que não usa Windows!';
}

?>

Existem também algumas Constantes pré-definidas que podem ser úteis, por exemplo:

Exemplo #2 Algumas constantes relacionadas com o sistema operacional

<?php
// *nix
echo DIRECTORY_SEPARATOR// /
echo PHP_SHLIB_SUFFIX;    // so
echo PATH_SEPARATOR;      // :

// Win*
echo DIRECTORY_SEPARATOR// \
echo PHP_SHLIB_SUFFIX;    // dll
echo PATH_SEPARATOR;      // ;
?>

Veja também phpversion(), php_sapi_name() e phpinfo().



phpcredits> <php_sapi_name
Last updated: Fri, 03 Feb 2012
 
User Contributed Notes
php_uname
Yzmir Ramirez
24-Aug-2011 07:00
Note that php_uname('n') does not always equal $_SERVER['HOST_NAME']

The machine that you are running the script may server many different host names so don't use this when building urls.
simon at NOSPAM dot zadra dot org
19-Jan-2006 07:26
Contrary to the last note, PHP_OS does display the OS PHP runs on currently, whereas php_uname() displays the Operating system version via uname.
This has nothing to do with the system PHP was built on.
tac at smokescreen dot org
14-Jan-2005 01:25
In php 4.1.2, php_uname('n') returns a warning about an invalid parameter count.  Change it to @php_uname to hide this warning.

phpcredits> <php_sapi_name
Last updated: Fri, 03 Feb 2012