PHP利用APC模組實現大檔案上傳進度條的方法_php技巧

來源:互聯網
上載者:User

php 大檔案帶進度的上傳,一直是一個令php程式員很苦惱的問題。查詢baidu 、Google ,大體做帶進度的上傳方式為:flash+php,socket,apc+php等,下面我介紹了apc +php+ajax製作的帶進度的上傳,並貼出源碼,希望對大家有用。
Alternative PHP Cache(APC)是 PHP 的一個免費公開的最佳化代碼緩衝。它用來提供免費,公開並且強健的架構來緩衝和最佳化 PHP 的中間代碼。 

在使用apc時候,先必須使用安裝apc 模組。
第一步:下載php_apc.dll

第二步:讓php.ini支援apc擴充模組。
將php_apc.dll放入你的ext目錄,然後開啟php.ini 加入:
     extension=php_apc.dll
     apc.rfc1867 = on
     apc.max_file_size = 100M
     upload_max_filesize = 100M
     post_max_size = 100M
     //以上參數可自己定義 

第三步:檢查是否支援PHP APC

 if (function_exists('apc_fetch')) { echo 'it surpport apc model!'; } else { echo "it's not support apc model!"; } ?>

下面進入正題:
原理:通過APC 模組,用ajas從緩衝中讀取上傳的進度。詳見:
 index.php 

<?php $unid=uniqid("");//確定唯一標緻,實現多人同時上傳?><div class="userinput2"> <div id="captions">先將你要上傳的軟體上傳伺服器,上傳時請耐心等候...<span class="style1"><br /> </span> <script type="text/javascript" > var xmlHttp; var proNum=0; var loop=0; //初始化xmlHttp function createxml(){ var xmlHttp; if(window.XMLHttpRequest){ xmlHttp=new XMLHttpRequest(); }else{ xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } return xmlHttp; } xmlHttp=createxml(); //ajas操作 function sendURL() { var url="getprogress.php?progress_key=<?php echo $unid;?>"; xmlHttp.open("GET",url,false); if (window.navigator.userAgent.indexOf("Firefox")>=1){ //如果是firefox3.0 xmlHttp.send("progress_key=<?php echo $unid;?>"); if(xmlHttp.status==200) doHttpReadyStateChange();  }else{ xmlHttp.onreadystatechange = doHttpReadyStateChange; xmlHttp.send("progress_key=<?php echo $unid;?>"); } } //回呼函數 function doHttpReadyStateChange() { if (xmlHttp.readyState== 4){ proNum=parseInt(xmlHttp.responseText); //alert(proNum); document.getElementByIdx_x("progressinner").style.width = proNum+"%"; document.getElementByIdx_x("showNum").innerHTML = proNum+"%"; if ( proNum < 100){ setTimeout("sendURL()", 200); }else{ //上傳成功後,還不能及時得到資訊。還希望高人指點 document.getElementByIdx_x("progressouter").style.display="none"; document.getElementByIdx_x("progressinner").style.display="none"; document.getElementByIdx_x("showNum").style.display="none"; document.getElementByIdx_x("theframe").style.display="none"; document.getElementByIdx_x("link2").style.display="block"; }  } } function startProgress(){ document.getElementByIdx_x("progressouter").style.display="block"; setTimeout("sendURL()", 200); } function newsofturl(text){ document.getElementByIdx_x("link2").style.display="block"; document.getElementByIdx_x("link2").value=text; } </script> <iframe id="theframe" name="theframe" src="softupload.php?id=<?php echo($unid); ?>" style="border: 0; height: 80px; width: 400px; " frameborder="0" scrolling="no" > </iframe> <input name="linkdefult" type="hidden" id="linkdefult" value="0" /> <br /> <div id="link2" style="display:none;" > <font size=2>上傳成功!    檔案大小為: <input type="text" name="filesize" id="filesize" style="width:50px;"/> </font><br> <br> <font size=2>檔案下載地址為:</font><br /> <input type=text name='link' id='link' style='width:380px;' /> </div> <br/> <div id="progressouter" style="width: 500px; height: 20px; border: 1px solid #000000; display:none;"> <div id="progressinner" style="position: relative; height: 20px; background-color: #333333; width: 0%; "></div> </div> <div id='showNum' style="font-size:12px; color:#333333"></div> </div></div> 

softupload.php

<?php $id = $_GET['id'];?><script language="javascript">//Trim the input textfunction Trim(input){ var lre = /^\s*/; var rre = /\s*$/; input = input.replace(lre, ""); input = input.replace(rre, ""); return input; }function CheckForTestFile() { var file = document.getElementByIdx_x('Softfile'); var fileName=file.value;  //Checking for file browsed or not if (Trim(fileName) =='' ) { alert("請為上傳選擇一個檔案!!!"); file.focus(); return false; } //Setting the extension array for diff. type of text files var extArray = new Array(".rar", ".zip", ".exe", ".gz");  //getting the file name while (fileName.indexOf("\") != -1) fileName = fileName.slice(fileName.indexOf("\") + 1); //Getting the file extension   var ext = fileName.slice(fileName.indexOf(".")).toLowerCase(); for (var i = 0; i < extArray.length; i++) { if (extArray[i] == ext) { window.parent.startProgress(); return true; } } alert("正確的檔案格式為" + (extArray.join(" ")) + "\n請選擇一個新的 " + "檔案提交上傳."); file.focus(); return false;  } </script> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><form enctype="multipart/form-data" id="upload_form" action="target.php" method="POST"><input type="hidden" name="APC_UPLOAD_PROGRESS" id="progress_key" value="<?php echo $id?>"/><table width="322" border="0" cellpadding="0" cellspacing="0" id="linkTable"> <tr> <td >1.選擇軟體<br /> <input name="Softfile" type="file" id="Softfile" /></td> <td ><br /> <input name="submit" type="submit" onclick="return CheckForTestFile();" value="上傳軟體"/></td> </tr> </table></form>

target.php

<script language="javascript">//將上傳後的資訊返還給父視窗function chuanzhi(){parent.document.getElementByIdx_x('filesize').value=document.getElementByIdx_x('size').value;parent.document.getElementByIdx_x('link').value=document.getElementByIdx_x('newsoftdir').value;parent.document.getElementByIdx_x('linkdefult').value=1;}</script><body onLoad="chuanzhi();"><?php//header('Content-Type:text/html;charset=gb2312');define('SOFTDIR', "./upload/"); //上傳後路徑define('HTTPSOFTDIR', "http://www.mysite.com/"); //伺服器的路徑//判斷上傳軟體尾碼名是否允許function isSoftExt($extension) { $ext = array('exe', 'rar', 'zip','gz'); return in_array($extension, $ext) ? true : false;}if($_SERVER['REQUEST_METHOD']=='POST'){$errors['0'] = true;$errors['1'] = '請選擇上傳的軟體圖片';$errors['2'] = '上傳軟體圖片失敗';$errors['3'] = '上傳軟體圖片失敗';$daytime = date('Y-m-d-h-m-s');$timename=str_replace("-","",$daytime); //取得當天的日期時間 //檢查軟體是否是正常上傳的 if(!is_uploaded_file($_FILES['Softfile']['tmp_name'])) { echo "<script>alert('非正常上傳!');history.back();</script>"; exit; } $extension = pathinfo($_FILES['Softfile']['name'], PATHINFO_EXTENSION); $filename = $timename."_".$_FILES['Softfile']['name']; $tmpsize=$_FILES['Softfile']['size']; $msize=round($tmpsize/1048576 , 2) ."M"; $ksize=round($tmpsize/1024 ,2). "K"; $filesize =$tmpsize>1048576?$msize:$ksize; //檢查軟體檔案格式 if(!isSoftExt($extension)) { echo "<script>alert('上傳的軟體格式有錯誤!');history.back();</script>"; exit; }  //移動軟體 if(!move_uploaded_file($_FILES['Softfile']['tmp_name'], SOFTDIR. $filename)) { echo "<script>alert('移動軟體出錯!');history.back();</script>"; exit; }else{ echo "<font size=2>上傳成功!    檔案大小為:<input type=text id='size' value='$filesize'></font><br>"; echo "<font size=2>檔案下載地址為:</font><input type=text id='newsoftdir' value='".HTTPSOFTDIR.$filename."' style='width=380'>"; }}elseecho "請不要直接輸入地址!";?>

getprogress.php

<?php//上傳ajas擷取進度頁面session_start();if(isset($_GET['progress_key'])) { $status = apc_fetch('upload_'.$_GET['progress_key']); echo ($status['current']/$status['total'])*100;}echo 'APC_FILE='.APC_FILE;?>

本文為大家提供了一個php製作帶進度上傳檔案的思路,可能還有一些欠缺的地方,希望大家進行補充,或者是再結合小編之前整理的文章進行學習,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.