preg_match_all( '#<body>(.+?.)</body>#is', $html5, $matches );
preg_match_all( '#<body>(.+?.)</body>'#is', $html5, $matches );
$options = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"Cookie: foo=bar\r\n" . // check function.stream-context-create on php.net
"User-Agent: Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.102011-10-16 20:23:10\r\n" // i.e. An iPad
)
);
$context = stream_context_create($options);
$html5 = file_get_contents( 'http://soccer365.ru/games/10858701/', false, $context );