“php file_get_contents siga o redirecionamento” Respostas de código

php file_get_contents siga o redirecionamento

$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 Siga o redirecionamento

$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

Respostas semelhantes a “php file_get_contents siga o redirecionamento”

Perguntas semelhantes a “php file_get_contents siga o redirecionamento”

Mais respostas relacionadas para “php file_get_contents siga o redirecionamento” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código