php 图片上传太慢

发布于 2024-11-26 11:40:45 字数 336 浏览 1 评论 0原文

我正在使用 ajax 使用 php 进行多个图像上传。我正在提交图像上传表单,其中文件输入针对隐藏的 iframe 。 之后我执行“move_uploaded_file()”,然后将上传的文件压缩为较小的大小。 然后我在 iframe 中显示已加载的文件名,并在 jquery 中检索它们以检查是否全部已上传。 在所有这些过程之后,我正在执行数据库操作并构建一些 html 内容并显示它们。在我的机器上运行时这确实需要大量时间。我觉得现场直播肯定会花费太多时间。 请建议我一些方法来缩短这个漫长的时间,如果我在这个过程中错了,请纠正我。我知道压缩需要很多时间。但我必须压缩它,而且我没有其他办法。

i am doing multiple image upload with php using ajax . i am submitting the image upload form with file inputs targetted to a hidden iframe .
after that i do 'move_uploaded_file()' and then i am compressing the uploaded file to a smaller size.
then i display the uloaded file names in iframe and retrieve them in jquery to check whether all were uploaded.
after all these processes i am doing database actions and building some html content and display them . this really takes plenty of time while running in my machine itself . i felt it will surely take too much time when it is live.
please suggest me some way to shorten this lengthy time and correct me if i am wrong in this process. i understood that compression takes much time . but i have to compress it and i have no other go .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稚气少女 2024-12-03 11:40:45

另外,如果你想要多个异步ajax请求,你应该看看 http://konrness.com/php5/how-to-prevent-blocking-php-requests/ 这个想法是在使用 session_start() 时要小心;

also , if you want multiple async ajax requests, you should take a look at http://konrness.com/php5/how-to-prevent-blocking-php-requests/ the ideea is to take care when using session_start();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文