“php file_get_contents suit la redirection” Réponses codées

php file_get_contents suit la redirection

$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 Suivre la redirection

$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

Réponses similaires à “php file_get_contents suit la redirection”

Questions similaires à “php file_get_contents suit la redirection”

Plus de réponses similaires à “php file_get_contents suit la redirection” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code