Okay, I have this setup:

//in example1.com, I am setting cURL <br />
$c = curl_init(); <br />
curl_setopt($c, CURLOPT_URL, 'http://example2.com');


//now in example2.com <br />
Is it possible to get the URL "example1.com" which is calling this URL (example2.com)?

Using file_get_contents('php://input'), I can get the input of example1.com but how can I get the URL which is the "example1.com" here in example2.com?

link|improve this question
feedback

1 Answer

Not sure exactly what you're asking. If you want to know the URL you script is invoked as that is just a matter of something like

"http://" . $_SERVER["SERVER_NAME] . $_SERVER["REQUEST_URI"]

But if you are asking to know the URL of the client which requested you that is not possible. Because there is nothing to guarantee you were invoked by another URL. It could just be a user typing someting into a browser, a web crawler, a cron job, etc...

The only thing you can discover for sure about your client is the IP address and port

$_SERVER["REMOTE_ADDR"]
$_SERVER["REMOTE_PORT"]

If you client is a friently HTTP client you can get some other info such as

$_SERVER["HTTP_USER_AGENT"]

Now I'm not sure thats what you were asking, but its what I took from it.

link|improve this answer
Hi, thank you for your answer. What I mean is to get the url of the site who uses curl to access my site. I tried the $_SERVER["REMOTE_ADDR"] but it just returns the IP address. I also tried gethostbyaddr($_SERVER["REMOTE_ADDR"]) but it does not return the correct URL of the site. This is because I need to check the URL who access the site, I guess its not possible then. – eleda Jul 5 '11 at 9:19
No it is not possible. Because there is nothing to garauntee it is even being accessed from a "url". If you also control the accessing client you could add a custom header, that way you can at least break down your clients, and everything else goes into the "other" bucket. – Sodved Jul 5 '11 at 11:03
feedback

Your Answer

 
or
required, but never shown

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