Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
.function getPageTitle($response)
{
$pattern = '#<\s*title\s*>(.+?)<\s*/\s*title\s*>#is';
$title = '';
$maches = array();
if(preg_match($pattern,$response,$maches))
{
$title = $maches[1];
}
return $title;
}
DeathGuard_ каза:Ползвай cURLhttp://bg2.php.net/curl
Ето ти и една функция, която да ти върне само между title таговете.function getPageTitle($response)
{
$pattern = '#<\s*title\s*>(.+?)<\s*/\s*title\s*>#is';
$title = '';
$maches = array();
if(preg_match($pattern,$response,$maches))
{
$title = $maches[1];
}
return $title;
}