Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using XAMPP on Windows Vista. In my development, I have http://127.0.0.1/test_website/.

How do I get http://127.0.0.1/test_website/ with PHP?

I tried something like these, but none of them worked.

echo dirname(__FILE__)
or
echo basename(__FILE__);
etc.
share|improve this question
1  
How did they not work? What did they return? – animuson May 12 '10 at 16:21
2  
@animuson Those constants return local filesystem paths, not URLs. – ceejayoz May 12 '10 at 16:27

5 Answers

up vote 43 down vote accepted

Try this:

<?php echo "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>

Learn more about the $_SERVER Predefined Variable

If you plan on using https, you can use this:

function url(){
  $protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
  return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}

echo url();
#=> http://127.0.0.1/foo
share|improve this answer
Should check $_SERVER['HTTPS'] and swap in https:// instead of http:// in those cases. – ceejayoz May 12 '10 at 16:26
@ceejayoz, updated answer to include this. – maček May 12 '10 at 16:37
Be careful, in protocol you must add "://" – Brice Favre Jun 9 '10 at 12:55
@Brice Favre, thanks for catching that. – maček Jun 9 '10 at 13:49
Thanks to you, i needed this function. – Brice Favre Jun 9 '10 at 13:58
show 3 more comments

Take a look at $_SERVER variable. It has all the info you need.

share|improve this answer

I think the $_SERVER superglobal has the information you're looking for. It might be something like this:

echo $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']

You can see the relevant PHP documentation here.

share|improve this answer

Function adjusted to execute without warnings:

function url(){
    if(isset($_SERVER['HTTPS'])){
        $protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
    }
    else{
        $protocol = 'http';
    }
    return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}
share|improve this answer
I knew I had done this before just couldn't remember how for some reason. Thanks! – Kyle C. Feb 19 at 3:36

Home url

<?php echo $_SERVER['HTTP_HOST'];?>



current url (like: /myfodler/myfile.php?action=blabla

<?php echo $_SERVER["REQUEST_URI"];?>



ONLY current FILE url (like: /myfodler/myfile.php)

<?php echo $_SERVER['PHP_SELF']; ?>



current working folder location (like: /myfolder/subfolder)

<?php echo dirname($_SERVER["REQUEST_URI"]); ?>



current working folder (with ftp HOME folder)

<?php echo dirname(__FILE__); ?>



You can mix them, like $_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']

More at: http://www.php.net/manual/en/reserved.variables.server.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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