您好,登錄后才能下訂單哦!
這篇文章主要介紹PHP+Ajax怎么實(shí)現(xiàn)上傳文件進(jìn)度條動(dòng)態(tài)顯示進(jìn)度功能,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
說個(gè)前提:PHP配置文件中規(guī)定默認(rèn)上傳文件大小限制2M以下,如需上傳大文件需同時(shí)更改php.ini中的upload_max_filesize
和max_execution_time
以及post_max_size
的值。
主界面以及Ajax實(shí)現(xiàn):index.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>上傳文件</title> <script type="text/javascript"> function sub() { var obj = new XMLHttpRequest(); obj.onreadystatechange = function() { if (obj.status == 200 && obj.readyState == 4) { document.getElementById('con').innerHTML = obj.responseText; } } // 通過Ajax對象的upload屬性的onprogress事件感知當(dāng)前文件上傳狀態(tài) obj.upload.onprogress = function(evt) { // 上傳附件大小的百分比 var per = Math.floor((evt.loaded / evt.total) * 100) + "%"; // 當(dāng)上傳文件時(shí)顯示進(jìn)度條 document.getElementById('parent').style.display = 'block'; // 通過上傳百分比設(shè)置進(jìn)度條樣式的寬度 document.getElementById('son').style.width = per; // 在進(jìn)度條上顯示上傳的進(jìn)度值 document.getElementById('son').innerHTML = per; } // 通過FormData收集零散的文件上傳信息 var fm = document.getElementById('userfile3').files[0]; var fd = new FormData(); fd.append('userfile', fm); obj.open("post", "upload.php"); obj.send(fd); } </script> <style type="text/css"> #parent { width: 200px; height: 20px; border: 2px solid gray; background: lightgray; display: none; } #son { width: 0; height: 100%; background: lightgreen; text-align: center; } </style> </head> <body> <h3>Ajax實(shí)現(xiàn)進(jìn)度條文件上傳</h3> <div id="parent"> <div id="son"></div> </div> <p id="con"></p> <input type="file" name="userfile" id="userfile3"><br><br> <input type="button" name="btn" value="文件上傳" onclick="sub()"> </body> </html>
php處理上傳文件:upload.php
<?php // 上傳文件進(jìn)行簡單錯(cuò)誤過濾 if ($_FILES['userfile']['error'] > 0) { exit("上傳文件有錯(cuò)".$_FILES['userfile']['error']); } // 定義存放上傳文件的真實(shí)路徑 $path = './upload/'; // 定義存放上傳文件的真實(shí)路徑名字 $name = $_FILES['userfile']['name']; // 將文件的名字的字符編碼從UTF-8轉(zhuǎn)成GB2312 $name = iconv("UTF-8", "GB2312", $name); // 將上傳文件移動(dòng)到指定目錄文件中 if (move_uploaded_file($_FILES['userfile']['tmp_name'], $path.$name)) { echo "文件上傳成功"; } else { echo "文件上傳失敗"; } ?>
php是一個(gè)嵌套的縮寫名稱,是英文超級(jí)文本預(yù)處理語言,它的語法混合了C、Java、Perl以及php自創(chuàng)新的語法,主要用來做網(wǎng)站開發(fā),許多小型網(wǎng)站都用php開發(fā),因?yàn)閜hp是開源的,從而使得php經(jīng)久不衰。
以上是“PHP+Ajax怎么實(shí)現(xiàn)上傳文件進(jìn)度條動(dòng)態(tài)顯示進(jìn)度功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。