X7ROOT File Manager
Current Path:
/opt/alt/tests/alt-php84-pecl-http_4.2.6-2.el8/tests/helper
opt
/
alt
/
tests
/
alt-php84-pecl-http_4.2.6-2.el8
/
tests
/
helper
/
ðŸ“
..
📄
cookie.inc
(319 B)
📄
cookie1.inc
(306 B)
📄
cookie2.inc
(586 B)
📄
dump.inc
(1.01 KB)
📄
env.inc
(1.17 KB)
ðŸ“
html
📄
http2.crt
(1.15 KB)
📄
http2.key
(1.64 KB)
📄
pipeline.inc
(957 B)
📄
proxy.inc
(862 B)
📄
server.inc
(5.17 KB)
📄
upload.inc
(567 B)
Editing: dump.inc
<?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); } } function dump_responses($client, array $expect_cookie = []) { while (($r = $client->getResponse())) { dump_headers(null, $r->getHeaders()); if ($expect_cookie) { $got_cookies = array_merge(...array_map(function($c) { return $c->getCookies(); }, $r->getCookies())); if ($expect_cookie != $got_cookies) { var_dump($expect_cookie, $got_cookies); echo $r->toString(true); } } } } ?>
Upload File
Create Folder