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.
Необходимо чтобы скрипт при проверки заходил на поддомен и смотрел существует ли такой или нет.
$host='subdomain.domain.ru';
($s=fsockopen($host,80,$errno,$errstr)) || die($errstr);
fwrite($s,
'GET / HTTP/1.0
Host: '.$host.'
Connection: Close
');
$page='';
while(!feof($s))$page.=htmlspecialchars(fread($s,1024));
fclose($s);
if(false!==strpos($page,'html')){
/* -=- */
}