Skip to content

Instantly share code, notes, and snippets.

@miyukki
Created November 12, 2011 12:35
Show Gist options
  • Save miyukki/1360475 to your computer and use it in GitHub Desktop.
Save miyukki/1360475 to your computer and use it in GitHub Desktop.
function getPageTitle($url) {
$html = @file_get_contents($url);
$html = mb_convert_encoding($html, 'UTF-8', 'auto');
if ( preg_match( "/<title>(.*?)<\/title>/i", $html, $matches) ) {
return $matches[1];
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment