在服务器端处理 plupload 的分块上传
当我使用 plupload 来分块文件时(设置选项 chunk_size
),我会为每个块收到一个单独的 PHP 请求。查看 $_FILES
变量,每个块的类型为 “application/octet-stream”
。
是否有任何简单、标准且舒适的方法如何在服务器端将这些部分组合到 PHP 中?
并保证理智(例如,当其中一个部分丢失时等)。
When I use plupload to chunk files (setting option chunk_size
), I get a separate PHP request for each chunk. Looking at $_FILES
variable, each chunk is of type "application/octet-stream"
.
Is there any simple, standard and comfortable way how to combine these pieces in PHP at server-side?
With sanity guaranteed (e.g. when one of the pieces is missing etc.).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是解析块并将结果存储在 $upload_file 中的方法(更改 $uploaded_file 以匹配您需要的内容)。
Here is the way to parse the chunks, and store the result in $upload_file (change $uploaded_file to match what you need).
最后我使用了与plupload-1.5.2(examples/upload.php)捆绑在一起的官方示例中的代码:
http://github.com/moxiecode/plupload/blob/master/examples/upload.php
In the end I used the code from official example bundled with plupload-1.5.2 (examples/upload.php):
http://github.com/moxiecode/plupload/blob/master/examples/upload.php