projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
coverity fix
[m6w6/ext-http]
/
tests
/
messagebody002.phpt
1
--TEST--
2
message body append
3
--SKIPIF--
4
<?php
5
include "skipif.inc";
6
?>
7
--FILE--
8
<?php
9
echo "Test\n";
10
11
$temp = new http\Message\Body();
12
$temp->append("yes");
13
14
var_dump((string) $temp);
15
16
?>
17
DONE
18
--EXPECT--
19
Test
20
string(3) "yes"
21
DONE