“php file_get_contents следуйте за перенаправлением” Ответ

php file_get_contents следуйте за перенаправлением

$context = stream_context_create(
    array(
        'http' => array(
            'follow_location' => true/false
        )
    )
);

$html = file_get_contents('http://www.example.com/', false, $context);

var_dump($http_response_header);
Matteoweb

file_get_contents Следуйте перенаправлению

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$a = curl_exec($ch);
if(preg_match('#Location: (.*)#', $a, $r))
 $l = trim($r[1]);
Friendly Hawk

Ответы похожие на “php file_get_contents следуйте за перенаправлением”

Вопросы похожие на “php file_get_contents следуйте за перенаправлением”

Больше похожих ответов на “php file_get_contents следуйте за перенаправлением” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования