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.
preg_match_all("!<a.*?href=\"?'?([^ \"'>]+)\"?'?.*?>(.*?)</a>!is",$str,$ok);
$internals = array();
for ($i=0; $i<count($ok[1]); $i++) {
if( preg_match( "!^http://!is", $ok[1][$i];
$internals[] = $ok[1][$i];
}