mirror of
https://github.com/php/php-src.git
synced 2024-12-22 16:30:02 +08:00
36 lines
643 B
PHP
36 lines
643 B
PHP
--TEST--
|
|
rfc1867 missing boundary 2
|
|
--INI--
|
|
file_uploads=1
|
|
upload_max_filesize=1024
|
|
--POST_RAW--
|
|
Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
|
|
-----------------------------20896060251896012921717172737
|
|
Content-Disposition: form-data; name="file1"; filename="file1.txt"
|
|
Content-Type: text/plain-file1
|
|
|
|
1
|
|
--FILE--
|
|
<?php
|
|
var_dump($_FILES);
|
|
var_dump($_POST);
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
["file1"]=>
|
|
array(5) {
|
|
["name"]=>
|
|
string(9) "file1.txt"
|
|
["type"]=>
|
|
string(0) ""
|
|
["tmp_name"]=>
|
|
string(0) ""
|
|
["error"]=>
|
|
int(3)
|
|
["size"]=>
|
|
int(0)
|
|
}
|
|
}
|
|
array(0) {
|
|
}
|