Sanırım Şöyle Bişey İstiyosun.Bu Kodla Hedef Sistenin Title'sini Yazdırabilirsin
<?php
/*
inferno- inferno__@live.fr
Ders:Hedef Sitenin Başlığını Çekmek
*/
function title($urll) {
$url = file_get_contents($urll);
$aranan="'<title>(.*?)</title>'";
preg_match_all($aranan,$url,$gelen);
for ($i=0; $i<count($gelen[1]); $i++)
{
$tr= $gelen[1][$i]."<br>";
echo $tr;
}
}
title("http://www.google.com/");
?>