Файл j.html
<html>
<head>
<LINK href="../../favicon.ico" type=ico rel=icon>
<meta http-equiv="content-type" content="text/html; charset=windows-1251">
<title>Название тайтла</title>
</head>
<body>
Просто текст
</BODY>
</html>
Как найти значение "Название тайтла" в таком php коде ?
<?
$url = "http://test1.ru/lis/j.html";
// пробуем открыть файл для чтения
if (!@fopen($url, "r")) {echo "Искомый файл не был найден";exit;}
$array=file("$url");
$a=0;
while($a<=45){
echo htmlspecialchars($array[$a]),"<br>";$a++;
}
?>