Skip to content

Instantly share code, notes, and snippets.

@phatduckk
Created June 15, 2009 07:24
Show Gist options
  • Save phatduckk/129987 to your computer and use it in GitHub Desktop.
Save phatduckk/129987 to your computer and use it in GitHub Desktop.
<?php
$ch = curl_init("http://phatduckk.com");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$res = curl_exec($ch);
$info = curl_getinfo($ch);
echo "final url: {$info['url']}\n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment