Maison  >  Questions et réponses  >  le corps du texte

PHP CURLOPT_WRITEFUNCTION renvoie les informations d'en-tête au corps

Quand j'inclus curl_setopt($ch, CURLOPT_WRITEFUNCTION, 'curl_write_flush') 时,我将标头插入到 $body 中。但如果没有 CURLOPT_WRITEFUNCTION 一切正常。我该怎么做才能阻止标头插入 $body ?

<?php

    $ch = curl_init();
    
    curl_setopt($ch, CURLOPT_URL, "https://stackoverflow.com");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

    function curl_write_flush($curl_handle, $chunk) { 
        echo $chunk;
        ob_flush();
        flush();
        return strlen($chunk);
    }
    curl_setopt($ch, CURLOPT_WRITEFUNCTION, 'curl_write_flush'); // WORKS WITHOUT

    $response = curl_exec($ch);
    $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);

    curl_close($ch);

    $headers = substr($response, 0, $header_size);
    $body = substr($response, $header_size);

    die($body);

?>

P粉799885311P粉799885311237 Il y a quelques jours485

répondre à tous(1)je répondrai

  • P粉262113569

    P粉2621135692024-03-20 18:13:33

    https://curl.se/libcurl/c/CURLOPT_WRITEFUNCTION.html

    Soit supprimez le curl_setopt($ch, CURLOPT_HEADER, 1);, soit vous devrez analyser vous-même les en-têtes des données de rappel.

    Vous pouvez également utiliser CURLOPT_HEADERFUNCTION, comme indiqué dans cette réponse :

    https://stackoverflow.com/a/41135574/1064767

    répondre
    0
  • Annulerrépondre