Forum Moderators: coopster
Although, frankly, if all you want is the title, then once you've grabbed the page with cURL I'd just grab the <title> tag with some regex:
// we assume that $page is the html of the page you grabbed with cURL
preg_match('/<title>([^<]+)</title>/', $page, $matches);
print_r($matches);