projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
travis: condense build matrix
[m6w6/ext-http]
/
tests
/
params005.phpt
1
--TEST--
2
quoted params
3
--SKIPIF--
4
<?php
5
include "skipif.inc";
6
?>
7
--FILE--
8
<?php
9
echo "Test\n";
10
11
$p = new http\Params("multipart/form-data; boundary=\"--123\"");
12
$c = array(
13
"multipart/form-data" => array(
14
"value" => true,
15
"arguments" => array(
16
"boundary" => "--123"
17
)
18
)
19
);
20
var_dump($c === $p->params);
21
var_dump("multipart/form-data;boundary=--123" === (string) $p);
22
?>
23
DONE
24
--EXPECT--
25
Test
26
bool(true)
27
bool(true)
28
DONE