projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
Merge branch 'master' into phpng
[m6w6/ext-http]
/
tests
/
header001.phpt
1
--TEST--
2
header string
3
--SKIPIF--
4
<?php
5
include "skipif.inc";
6
?>
7
--FILE--
8
<?php
9
10
echo "Test\n";
11
12
$h = new http\Header("foo", "bar");
13
var_dump("Foo: bar" === (string) $h);
14
15
?>
16
Done
17
--EXPECT--
18
Test
19
bool(true)
20
Done