Código PHP:
1 <?php
2 $url = "http://www.google.com";
3 $file = file_get_contents($url);
4
5 if(preg_match("/<title>(.+)<\/title>/i",$file,$m))
6 print "The title of $url is <b>$m[1]</b>";
7 else
8 print "The pagev".$url." doesn't have a title tag";
9 ?>
Con el último post casi le das a la solución, este código ya ha sido testado y funciona perfectamente, si deseas consultar algo más no dudes en comunicarmelo...