<?php

$site = file_get_contents("http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']."");

$title = explode('<title>',$site);
$title = explode('</title>',$title[1]);

echo $title[0];
?>

bu şekilde deneyin