vote up 1 vote down star
1

I can't find a way to detect the name of the server running a PHP script from the command line. There are numerous ways to do this for PHP accessed via HTTP. But there does not appear to be a way to do this for CLI.

For example : $_SERVER['SERVER_NAME'] is not available from the command line.

Does anyone have suggestions?

Thanks, Justin Noel AppBeacon.com

flag

I think I've finally got a semi-decent answer: $server = system('echo $HOSTNAME'); Anyone have something better? – Justin Mar 9 at 14:36
@Uwe Mesecke : I can't vote up or down. Your answer is the best. Although, it is not 100% portable, because some hosts respond with extra garbage in that. Mac OS X Leopard and OpenSolaris all respond with just the hostname. RHEL3 (shudder) responds with all kinds of junk. – Justin Mar 9 at 14:49
Do you not even have an option to check a tick next to the answer you've chosen? – Crises of Identity Mar 9 at 14:52
If you need portability, you might want to know that on Windows (XP, running WAMP w/ PHP 5.2.6), the echo $HOSTNAME gives me exactly that, i.e. $HOSTNAME. However, both Uwe Mesecke's and jonstjohn's suggestions both worked on both Windows and Linux (CentOS 5 w/ PHP 5.1.6). – PTBNL Mar 9 at 14:57
@Random Echo : No, I can't see anyway to indicate the best answer. Voting up or down tells me I don't have a high enough reputation. – Justin Mar 9 at 15:16
show 2 more comments

6 Answers

vote up 8 vote down check
echo php_uname("n");

see http://php.net/manual/en/function.php-uname.php

link|flag
vote up 1 vote down

Possibly because if you run a script from the command line, no server is involved?

link|flag
No server in the sense that no WEB server is involved. However, I want the name of the server the script itself is actually running on. – Justin Mar 9 at 14:35
vote up 0 vote down

Write your server name in your config file or something similar.

link|flag
No thanks. I want code that can be moved from one server to another without needing config file changes. – Justin Mar 9 at 14:35
vote up 1 vote down

Try:

$servername = `hostname`;
link|flag
vote up 1 vote down

The SERVER_NAME is not available when you run PHP from the CLI for that very same reason.

When you run PHP from the CLI, you start your own PHP intepreter that runs whatever code you passed to it, without any kind of server. So from the CLI, PHP knows nothing about your web server that you do not explicitly tell it.

link|flag
vote up 0 vote down

@Uwe Mesecke : I can't vote up or down. Your answer is the best. Although, it is not 100% portable, because some hosts respond with extra garbage in that. Mac OS X Leopard and OpenSolaris all respond with just the hostname. RHEL3 (shudder) responds with all kinds of junk.

link|flag
You can mark the answer as accepted by clicking on the symbol under the votes of the answer. – Wookai Mar 9 at 14:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.