Welcome Guest, Not a member yet? Register   Sign In
OS CHECK FUNCTION
#1

[eluser]Peter Ivanov[/eluser]
Hello,
is there some CI function that checks if the OS is Windows or Linux
#2

[eluser]xwero[/eluser]
You can use the php function get_browser
#3

[eluser]Peter Ivanov[/eluser]
no i want to check the SERVER OS not the client
#4

[eluser]xwero[/eluser]
Your own server? why would you want to check that?
#5

[eluser]Luci3n[/eluser]
$this->agent->platform();

edit: sorry i thought you meant the client
#6

[eluser]champs[/eluser]
It really depends on exactly what sort of information you want here, but:

A) If you care about how paths are put together on the system, PHP has the DIRECTORY_SEPARATOR constant. Not that it matters if you use forward slashes for paths in Windows ports of PHP, but you can at least present the information nicely this way.

B) If you want to know what server software you are running under, use php_sapi_name(). It will return "cgi", "isapi" (IIS), "" for command line, etc.

C) If you just care about whether Windows is running, $_ENV['WINDIR'] has no legitimate reason to be set on anything but a Windows box.

HTH.
#7

[eluser]esra[/eluser]
[quote author="Peter Ivanov" date="1189872460"]no i want to check the SERVER OS not the client[/quote]

http://www.phpclasses.org/browse/package/3477.html
#8

[eluser]Peter Ivanov[/eluser]
Thanks a lot guys




Theme © iAndrew 2016 - Forum software by © MyBB