update : 2015.11.03
php.shukuma.com검색:
|
php_uname(PHP 4 >= 4.0.2, PHP 5, PHP 7) php_uname — Returns information about the operating system PHP is running on 설명
string php_uname
([ string
$mode = "a"
] )
php_uname() returns a description of the operating
system PHP is running on. This is the same string you see at the very
top of the phpinfo() output. For the name of just
the operating system, consider using the On some older UNIX platforms, it may not be able to determine the current OS information in which case it will revert to displaying the OS PHP was built on. This will only happen if your uname() library call either doesn't exist or doesn't work. 인수
반환값Returns the description, as a string. 예제
Example #1 Some php_uname() examples
<?php There are also some related Predefined PHP constants that may come in handy, for example: Example #2 A few OS related constant examples
<?php 참고
|