Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<?php $content = file_get_contents('URL'); $pos = strpos($content, '<body>'); $content = substr($content, $pos); $pos = strpos($content, '</body>'); $content = substr($content, 0, $pos); echo $content; ?>
<? $url = 'https://www.asos.com/ru/'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_USERAGENT, "GOOGLE"); // Обманочка curl_setopt($ch, CURLOPT_HEADER, 0); $output = curl_exec($ch); curl_close($ch); echo $output;