Upload Progress Bar in PHP

2018-12-31 21:47发布

Does anyone know how to get a progress bar for an upload in php? I am trying writing code for a photo album uploader. I would like a progress bar to display while the photos are uploading.

I am fairly new to php so I dont know everything about it.

12条回答
查无此人
2楼-- · 2018-12-31 21:56

If you have APC installed, it has a callback hook for upload progress.

Rasmus Lerdorf (PHP's creator) has a sample of this using YUI (oh, and here's the PHP source).

See the documentation here.

查看更多
其实,你不懂
3楼-- · 2018-12-31 22:03

A php/ajax progress bar can be done. (Checkout the Html_Ajax library in pear). However this requires installing a custom module into php.

Other methods require using an iframe, through which php looks to see how much of the file has been uploaded. However this hidden iframe, may be blocked by some browsers addons because hidden iframes are often used to send malicious data to a users computer.

Your best bet is to use some form of flash progress bar if you do not have control over your server.

查看更多
一个人的天荒地老
4楼-- · 2018-12-31 22:04

I just found Mega Upload (http://www.raditha.com/php/progress.php) which uses perl do the uploading and display a progress bar.

查看更多
与君花间醉酒
5楼-- · 2018-12-31 22:09

Gears and HTML5 have a progress event in the HttpRequest object for submitting a file upload via AJAX.

http://developer.mozilla.org/en/Using_files_from_web_applications

Your other options as already answered by others are:

  1. Flash based uploader.
  2. Java based uploader.
  3. A second comet-style request to the web server or a script to report the size of data received. Some webservers like Lighttpd provide modules to do this in-process to save the overhead of calling an external script or process.

Technically there is a forth option, similar to YouTube upload, with Gears or HTML5 you can use blobs to split a file into small chunks and individually upload each chunk. On completion of each chunk you can update the progress status.

查看更多
听够珍惜
6楼-- · 2018-12-31 22:10

flash upload will do the job. it will upload file where you want. But there is more demands than that for me. i need to change filename before upload is complete. this is also possible with flash solution BUT ONLY if you are adding FIXED variable. I need to add user ID to a filename and i see no way to do it.

查看更多
闭嘴吧你
7楼-- · 2018-12-31 22:12

You would need to use Javascript to create a progress bar. A simple Google search led me to this article: WebAppers Simple Javascript Progress Bar with CSS.

Dojo File Upload Progress Bar Widget is another option using the Dojo Javascript framework.

EDIT: Assuming your uploading a large number of images (such as a photo album), and POSTing them to your PHP script, you could use javascript to read the results back from the post and update the progress bar based on the number of images uploaded / total number of images. This has the side effect of only updating after each post has completed. Check out here for some info on how to post with JS.

查看更多
登录 后发表回答