1--TEST--
2rfc1867 missing boundary 2
3--INI--
4file_uploads=1
5error_reporting=E_ALL&~E_NOTICE
6comment=debug builds show some additional E_NOTICE errors
7upload_max_filesize=1024
8--POST_RAW--
9Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
10-----------------------------20896060251896012921717172737
11Content-Disposition: form-data; name="file1"; filename="file1.txt"
12Content-Type: text/plain-file1
13
141
15--FILE--
16<?php
17var_dump($_FILES);
18var_dump($_POST);
19?>
20--EXPECTF--
21array(1) {
22  [%u|b%"file1"]=>
23  array(5) {
24    [%u|b%"name"]=>
25    %string|unicode%(9) "file1.txt"
26    [%u|b%"type"]=>
27    %string|unicode%(0) ""
28    [%u|b%"tmp_name"]=>
29    %string|unicode%(0) ""
30    [%u|b%"error"]=>
31    int(3)
32    [%u|b%"size"]=>
33    int(0)
34  }
35}
36array(0) {
37}
38