projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
add missing constant
[m6w6/ext-http]
/
tests
/
params009.phpt
1
--TEST--
2
empty params
3
--SKIPIF--
4
<?php
5
include "skipif.inc";
6
?>
7
--FILE--
8
<?php
9
echo "Test\n";
10
$p = new http\Params(NULL);
11
var_dump(array() === $p->params);
12
?>
13
DONE
14
--EXPECT--
15
Test
16
bool(true)
17
DONE