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