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.
$url = $snid = null;
if (preg_match('/<a [^>]*href=\"([^\"]+)\"[^>]*_snid=\"([^\"]+)\"[^>]*>/i', $str, $match))
{
$url = $match[1];
$snid = $match[2];
}
PHP:preg_match('#<title>(.*?),#i',$str,$arr); echo $arr[1];
preg_match('#<title>[^,]+\s([^,]+),#i',$str,$arr);
echo $arr[1];