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
/
params010.phpt
1
--TEST--
2
int key params
3
--SKIPIF--
4
<?php
5
include "skipif.inc";
6
?>
7
--FILE--
8
<?php
9
echo "Test\n";
10
11
$p = new http\Params("0=nothing;1=yes");
12
var_dump(array("0" => array("value" => "nothing", "arguments" => array(1=>"yes"))) === $p->params);
13
var_dump("0=nothing;1=yes" === $p->toString());
14
15
?>
16
DONE
17
--EXPECT--
18
Test
19
bool(true)
20
bool(true)
21
DONE