PATH:
opt
/
alt
/
tests
/
alt-php54-pecl-http_2.6.0-1.el8
/
tests
/
helper
<?php function dump_headers($stream, array $headers) { if (!is_resource($stream)) { $stream = fopen("php://output", "w"); } ksort($headers); foreach ($headers as $key => $val) { fprintf($stream, "%s: %s\n", $key, $val); } fprintf($stream, "\n"); } function dump_message($stream, http\Message $msg, $parent = false) { if (!is_resource($stream)) { $stream = fopen("php://output", "w"); } fprintf($stream, "%s\n", $msg->getInfo()); dump_headers($stream, $msg->getHeaders()); $msg->getBody()->toStream($stream); if ($parent && ($msg = $msg->getParentMessage())) { dump_message($stream, $msg, true); } } ?>
[-] cookie.inc
[edit]
[-] dump.inc
[edit]
[-] proxy.inc
[edit]
[+]
html
[-] http2.crt
[edit]
[-] upload.inc
[edit]
[-] server.inc
[edit]
[+]
..
[-] http2.key
[edit]
[-] pipeline.inc
[edit]