Código PHP:
<?
function getTitle($url){
$contenido=file_get_contents($url,false,NULL,0, 500); // carga el archivo en una cadena
preg_match('|<title>(.*?)</title>|is',$contenido,$matches);
return $matches[1];
}
$server_name = 'http://'.$_SERVER['SERVER_NAME'];
echo getTitle($server_name);
?>