Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$string = "";
$pattern = "%<title>(.*)</title>%is";
$replace = "$1";
$url = file("http://www.html.de");
$i = 0;
while(($title = preg_match($pattern,$replace,$string)) == $string)
{
if($i<(count($url)-1))
$string = $url[$i];
else
break;
$i++;
}
echo $title;