vote up 1 vote down star

Hi,

This is odd, but for some reason the $_SERVER["SCRIPT_URI"] will not return the domain name when I am in child/sub-pages but will only work on the main page. Not sure if its due to the script (WordPress) or host, but please can you suggest any reliable solution to retrieve the domain name with PHP?

I am very thankful in advance, Regards

flag

5 Answers

vote up 8 vote down check

If you need domain name, use:

$_SERVER['HTTP_HOST']
link|flag
Oh, this one worked fine!! even with url rewriting on. Thanks – Ahmad Fouad Apr 4 at 21:51
vote up 0 vote down

This might be due to URL rewriting, you can try $_SERVER['REQUEST_URI'] instead if you want the path that was called in the url.

link|flag
If you do choose this method, be aware that it can be affected by the request headers. – Tom Wright Apr 4 at 21:50
Indeed. Theres url rewriting. But I do not want the path, I just want to check the domain name. Any way around? – Ahmad Fouad Apr 4 at 21:50
vote up 4 vote down

Depending on what you want, I'd use one of the following:

  1. $_SERVER['PHP_SELF'] for the script file location
  2. $_SERVER['SERVER_NAME'] for the host name

From the php docs

EDIT: Maybe PHP_SELF isn't the best. See comments.

link|flag
As I know, using $_SERVER['PHP_SELF'] is an absolute risk. is.gd/qPcb – Sepehr Lajevardi Apr 5 at 9:30
vote up 7 vote down

When in doubt

var_dump($_SERVER);
link|flag
vote up 3 vote down

by encountering such a problem, I'll do this:

foreach($_SERVER as $key=>$value) //var_dump($_SERVER);
  echo "$_SERVER[".$key."] = ".$value."<br />";

Additionally as I know, using of $_SERVER["PHP_SELF"] could be an absolute security risk.

link|flag

Your Answer

Get an OpenID
or

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