Berikut ini saya akan jabarkan script php untuk membaca title dalam sebuah website atau blog, yang dibutuhkan adalah hanya data urlnya saja. caranya buat file title.php
<?php
function getTitle($Url){
$str = file_get_contents($Url);
if(strlen($str)>0){
preg_match("/\<title\>(.*)\<\/title\>/",$str,$title);
return $title[1];
}
}
//contoh :
$web = "http://didyouknowthis-one.blogspot.com/"; //url website yang akan kita lihat titlenya
$judultitle = getTitle("$web");
echo "$judultitle";
exit;
?>