php-src/tests/basic/rfc1867_boundary_2.phpt
2016-11-24 22:39:39 +01:00

24 lines
416 B
PHP

--TEST--
rfc1867 boundary 2
--INI--
post_max_size=1024
--POST_RAW--
Content-Type: multipart/form-data; boundary=------------------------------------foo, bar
--------------------------------------foo
Content-Disposition: form-data; name="foobar"
1
--------------------------------------foo--
--FILE--
<?php
var_dump($_FILES);
var_dump($_POST);
?>
--EXPECTF--
array(0) {
}
array(1) {
["foobar"]=>
string(1) "1"
}