Viewing File: /opt/alt/tests/alt-php82-pecl-http_4.2.6-4.el8/tests/message007.phpt

--TEST--
message to stream
--SKIPIF--
<?php
include "skipif.inc";
?>
--FILE--
<?php

echo "Test\n";

$m = new http\Message("HTTP/1.1 200 Ok");
$m->addHeader("Content-Type", "text/plain");
$m->getBody()->append("this\nis\nthe\ntext");

$f = tmpfile();
$m->toStream($f);
rewind($f);
var_dump((string) $m === stream_get_contents($f));
fclose($f);

?>
Done
--EXPECT--
Test
bool(true)
Done
Back to Directory File Manager
<