How can I get the title of an HTML page using php? I\'ve made a php web crawler and I want to implement this feature into my crawler so that it will have the name of the pag
Would this help?
$myURL = 'http://www.google.com'; if (preg_match( '/<title>(.+)<\/title>/', file_get_contents($myURL),$matches) && isset($matches[1] ) $title = $matches[1]; else $title = "Not Found";