mirror of
https://github.com/php/php-src.git
synced 2024-11-30 13:25:43 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
35 lines
762 B
PHP
35 lines
762 B
PHP
--TEST--
|
|
rfc1867 file_upload disabled
|
|
--INI--
|
|
file_uploads=0
|
|
--POST_RAW--
|
|
Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
|
|
-----------------------------20896060251896012921717172737
|
|
Content-Disposition: form-data; name="foo"
|
|
|
|
bar
|
|
-----------------------------20896060251896012921717172737
|
|
Content-Disposition: form-data; name="file1"; filename="file1.txt"
|
|
Content-Type: text/plain-file1
|
|
|
|
1
|
|
-----------------------------20896060251896012921717172737
|
|
Content-Disposition: form-data; name="bar"
|
|
|
|
foo
|
|
-----------------------------20896060251896012921717172737--
|
|
--FILE--
|
|
<?php
|
|
var_dump($_FILES);
|
|
var_dump($_POST);
|
|
?>
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|
|
array(2) {
|
|
["foo"]=>
|
|
string(3) "bar"
|
|
["bar"]=>
|
|
string(3) "foo"
|
|
}
|