Home  >  Article  >  php教程  >  PHP文件上传进度条的具体实现方式

PHP文件上传进度条的具体实现方式

WBOY
WBOYOriginal
2016-06-13 11:06:03778browse

我们在编写文件上传代码的时候,还需要考虑一个重要的实现功能,那就是文件上传所需要的进度条。目前我知道我这里举两个分别实现的例子供参考,更灵活的应用根据自己需要来修改。

APC的PHP文件上传进度条实现方法:

安装APC,参照官方文档安装,可以使用PECL模块安装方法快速简捷,这里不说明

配置php.ini,设置参数 apc.rfc1867=1 ,使APC支持上传进度条功能,在APC源码说明文档里面有说明

代码范例:

  1. if ($_SERVER['REQUEST_METHOD'] == 'POST') {  //上传请求  
  2.     $status = apc_fetch('upload_' . $_POST['APC_UPLOAD_PROGRESS']);  
  3.     $status['done'] = 1;  
  4.     echo json_encode($status);  //输出给用户端页面里的ajax调用,相关文档请自己寻找  
  5.     exit;  
  6. } elseif (isset($_GET['progress_key'])) {   //读取上传进度  
  7.     $status = apc_fetch('upload_'.$_GET['progress_key']);  
  8.     echo json_encode($status);  
  9.     exit;  
  10. } else {  
  11.     //其他代码,比如上传表单等  

uploadprogress 模块实现方法:

使用PECL模块安装方法安装该模块的PHP文件上传进度条实现方法

php.ini里面设置 uploadprogress.file.filename_template = “/tmp/upd_%s.txt”

代码范例:

  1. if($_SERVER['REQUEST_METHOD']=='POST') {  
  2.     if (is_uploaded_file($_FILES['upfile']['tmp_name'])) {  
  3.         $upload_dir = 'your_path/';  
  4.         $ext         = strrchr($_FILES['video']['name'], '.');  
  5.         $sessid      = $_POST['UPLOAD_IDENTIFIER'] ;  
  6.         $tmpfile     = $upload_dir . $sessid;    
  7.         $sessfile    = $upload_dir . $sessid .$ext;  
  8.         if (move_uploaded_file($_FILES['upfile']['tmp_name'],$tmpfile)) {  
  9.             //上传成功  
  10.         } else {  
  11.             //上传失败  
  12.     } else {  
  13.         //上传错误  
  14.           
  15. } elseif (!empty($_GET['sessid'])) {  
  16.     header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");  
  17.     header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");  
  18.     header("Cache-Control: no-store, no-cache, must-revalidate");  
  19.     header("Cache-Control: post-check=0pre-check=0", false);  
  20.     header("Pragma: no-cache");  
  21.     header("Content-Type:text/html;charset=UTF-8");  
  22.  
  23.     $unique_id = $_GET['sessid'];  
  24.     $uploadvalues = uploadprogress_get_info($unique_id);  
  25.  
  26.     if (is_array($uploadvalues)) {  
  27.         echo json_encode($uploadvalues);  
  28.     } else {  
  29.         //读取进度失败,另外处理逻辑  
  30.     }  
  31.       
  32. } else {  
  33.     //显示上传表单  

以上就是我们为大家介绍的两种PHP文件上传进度条的具体方法。


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn