|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-12-01 04:48 UTC] aharvey@php.net
-Package: Feature/Change Request
+Package: *General Issues
[2010-12-01 04:48 UTC] aharvey@php.net
[2010-12-01 04:49 UTC] aharvey@php.net
-Summary: Current PHP version not meet the standard RFC2388
+Summary: multipart/mixed POST data (RFC2388) not supported
[2020-09-24 17:49 UTC] mike@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 10:00:02 2025 UTC |
Description: ------------ Opera browser a support Web Forms 2.0, it allows easy build uploading multiple files form, but current PHP version not meet the standard RFC2388 www.ietf.org/rfc/rfc2388.txt Returning Values from Forms: multipart/form-data, L. Masinter. IETF, August 1998. 4.2 Sets of files If the value of a form field is a set of files rather than a single file, that value can be transferred together using the ?multipart/mixed? format. Therefore, at present, using PHP, it is impossible to ensure efficiency uploading multiple files form at Opera browser. Reproduce code: --------------- <html> <body> <form action="upload.php" enctype="multipart/form-data" method="post"> <input type="file" min="1" max="9999" name="file[]" multiple="true"/> <input type="submit" name="submit" value="Upload"/> </form> </body> </html>