|
Posted by Andy Hassall on 07/13/07 12:21
On Fri, 13 Jul 2007 04:45:27 -0700, Mikhail Kovalev <mikhail_kovalev@mail.ru>
wrote:
>I'm sending a html form with cURL to some file.php which does
>something with the sent data and at the end redirects me to some other
>URL, which is different every time, something like this:
>
>$ch = curl_init();
>curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
>curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
>...
>$result = curl_exec($ch);
>
>$result here is a string of the resulting page at the end
>
>I need to return the final URL of where I have been redirected when
>sending the request
http://uk.php.net/manual/en/function.curl-getinfo.php
CURLINFO_EFFECTIVE_URL ?
Or you could set CURLOPT_HEADERFUNCTION and read the Location headers on the
redirect(s).
--
Andy Hassall :: andy@andyh.co.uk :: http://www.andyh.co.uk
http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool
Navigation:
[Reply to this message]
|