<?php $dom = new DOMDocument(); $opts = array('http'=>array('header' => "User-Agent:MyAgent/1.0\r\n")); $context = stream_context_create($opts); $html = file_get_contents('https://time100.ru/online',false,$context); $dom->validateOnParse = true; $dom->loadHTML($html); $dom->preserveWhiteSpace = false; $classname="time"; $time = $dom->query("//*[contains(concat(' ', normalize-space(@class), ' '), ' $classname ')]"); echo $time->nodeValue; ?>
Issues HTTP ERROR 500
PHP version 7.1