1234567891011121314151617181920212223242526272829303132333435 |
- --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);
- ?>
- --EXPECTF--
- 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) {
- }
|