2002-04-15 00:12:54 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2003-07-04 16:06:02 +00:00
|
|
|
<!-- $Revision: 1.5 $ -->
|
2002-04-15 00:12:54 +00:00
|
|
|
<!-- splitted from ./en/functions/info.xml, last change in rev 1.7 -->
|
|
|
|
<refentry id="function.php-uname">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>php_uname</refname>
|
|
|
|
<refpurpose>
|
|
|
|
Returns information about the operating system PHP was built on
|
|
|
|
</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>string</type><methodname>php_uname</methodname>
|
|
|
|
<void/>
|
|
|
|
</methodsynopsis>
|
|
|
|
<simpara>
|
2003-07-02 20:57:47 +00:00
|
|
|
<function>php_uname</function> returns a <type>string</type> with a
|
|
|
|
description of the operating system PHP is built on. If you're just
|
|
|
|
wanting the name of the operating system, consider using the
|
|
|
|
<constant>PHP_OS</constant> constant.
|
2002-04-15 00:12:54 +00:00
|
|
|
</simpara>
|
|
|
|
<para>
|
|
|
|
<example>
|
2003-07-02 20:57:47 +00:00
|
|
|
<title>Some <function>php_uname</function> examples</title>
|
2002-04-15 00:12:54 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
2003-07-02 20:57:47 +00:00
|
|
|
<?php
|
|
|
|
echo php_uname();
|
|
|
|
echo PHP_OS;
|
|
|
|
|
|
|
|
/* Some possible outputs:
|
|
|
|
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
|
2003-07-04 16:06:02 +00:00
|
|
|
WINNT
|
2003-07-02 20:57:47 +00:00
|
|
|
*/
|
|
|
|
|
2003-07-04 16:06:02 +00:00
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
2003-07-02 20:57:47 +00:00
|
|
|
echo 'You are using Windows!';
|
|
|
|
} else {
|
|
|
|
echo 'You are not using Windows!';
|
2002-04-15 00:12:54 +00:00
|
|
|
}
|
2003-07-02 20:57:47 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
There are also some related
|
|
|
|
<link linkend="language.constants.predefined">Predefined PHP
|
|
|
|
constants</link> that may come in handy, for example:
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
<example>
|
|
|
|
<title>A few OS related constant examples</title>
|
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
|
|
|
<?php
|
|
|
|
// *nix
|
|
|
|
echo DIRECTORY_SEPARATOR; // :
|
|
|
|
echo PHP_SHLIB_SUFFIX; // so
|
|
|
|
|
|
|
|
// Win*
|
|
|
|
echo DIRECTORY_SEPARATOR; // ;
|
|
|
|
echo PHP_SHLIB_SUFFIX; // dll
|
|
|
|
?>
|
2002-04-15 00:12:54 +00:00
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
2003-07-02 20:57:47 +00:00
|
|
|
<para>
|
|
|
|
See also <function>php_version</function>,
|
|
|
|
<function>php_sapi_name</function>, and
|
|
|
|
<function>phpinfo</function>.
|
|
|
|
</para>
|
2002-04-15 00:12:54 +00:00
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|