Code Monkey home page Code Monkey logo

Comments (2)

m6w6 avatar m6w6 commented on June 14, 2024

I just pushed http\Client::setDebug() in 1ac722a which should give you the necessary facility to implement your needs.

Thank you.

Example:

<?php
$c = new http\Client;
$c->enqueue(new http\Client\Request("GET", "https://m6w6.name"));

$c->setDebug(function(http\Client $c, http\Client\Request $r, int $type, string $data) {
    if ($type & http\Client::DEBUG_HEADER) {
        echo $data;
    }
});

$c->send();' 

Output:

GET / HTTP/1.1
Host: m6w6.name
User-Agent: PECL_HTTP/3.1.0dev PHP/7.1.0-dev libcurl/7.49.1
Accept: */*

HTTP/1.1 200 OK
Date: Tue, 21 Jun 2016 07:22:55 GMT
Server: Apache/2.4.10 (Debian)
Strict-Transport-Security: max-age=31536000; preload
Last-Modified: Wed, 01 Jun 2016 08:20:12 GMT
ETag: "19ee-53433289985eb"
Accept-Ranges: bytes
Content-Length: 6638
Vary: Accept-Encoding
Content-Type: text/html

from ext-http.

afflerbach avatar afflerbach commented on June 14, 2024

At first glimpse 1ac722a actually seems to satisfy our needs. Thanks very much!

from ext-http.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.