Skip to content

Instantly share code, notes, and snippets.

@phongjalvn
Created July 29, 2010 07:36
Show Gist options
  • Save phongjalvn/497513 to your computer and use it in GitHub Desktop.
Save phongjalvn/497513 to your computer and use it in GitHub Desktop.
function get_title($url)
{
$dom = new DOMDocument();
if($dom->loadHTMLFile($url)) {
$list = @$dom->getElementsByTagName("title");
if ($list->length > 0) {
return $list->item(0)->textContent;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment