PHP 8.1.28 Released!

EventHttpRequest::getConnection

(PECL event >= 1.8.0)

EventHttpRequest::getConnectionReturns EventHttpConnection object

Descrizione

Returns EventHttpConnection object which represents HTTP connection associated with the request.

Avviso

Libevent API allows HTTP request objects to be not bound to any HTTP connection. Therefore we can't unambiguously associate EventHttpRequest with EventHttpConnection . Thus, we construct EventHttpConnection object on-the-fly. Having no information about the event base, DNS base and connection-close callback, we just leave these fields unset.

EventHttpRequest::getConnection() method is usually useful when we need to set up a callback on connection close. See EventHttpConnection::setCloseCallback() .

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

Returns EventHttpConnection object.

Vedere anche:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top