I am currently using curl to fill an form, but after completion of the post, the other script which handles the form is redirecting to other url , now I want to get the url , for which the script is redirecting to a variable.
Thanks..
|
|
|
You would use
And parse the headers for the |
|||||
|
|
Easy way to find the redirected url (if you don't want to know in advance)
|
|||||||||||||
|
|
You may want to set the CURLOPT_FOLLOWLOCATION to true. Or set the CURLOPT_HEADER to true and then use regexp to get the Location header. |
|||
|
|
Here I get the resource http headers then I parse the headers out into an array $retVal. I got the code for parsing the headers from here (http://www.bhootnath.in/blog/2010/10/parse-http-headers-in-php/) You could also use http://php.net/manual/en/function.http-parse-headers.php if you have (PECL pecl_http >= 0.10.0)
|
||||
|