色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

php flash上傳頭像

周雨萌1年前8瀏覽0評論
PHP Flash上傳頭像 在現代社交網絡中,用戶頭像已成為用戶個性展示和網絡身份標識的重要組成部分。然而,在傳統的web開發中,文件上傳是個傳統的問題,通過php編寫的文件上傳程序,與用戶之間需要長時間的等待。面對著這樣的問題,一種基于Flash技術的文件上傳程序日漸流行。本文將介紹php flash上傳頭像的實現。 Flash上傳頭像實現的基本思路是,利用Flash組件進行大文件分片上傳,再利用php對文件進行接收處理并存儲至服務器。這種方式不僅適用于文件頭像的上傳,還可以應用于視頻音頻文件和其他大文件的上傳。 基本思路 1.向用戶展示上傳頁面,讓用戶選擇本地文件。

<script type="text/javascript"> function userUpload(){ var fd=new FormData(); fd.append("userImage",document.getElementById("userImage").files[0]); //將本地文件保存到FormData中 var xhr= new XMLHttpRequest(); xhr.onreadystatechange=function(){ if(xhr.readyState!=4){ return; } if(xhr.status==200){ if(xhr.responseText=="success"){ //上傳成功 alert("頭像上傳成功!"); location.reload(); }else{//上傳失敗 alert("頭像上傳失敗!"); } } } xhr.open("POST","upload.php",true); //使用POST方法傳輸FormData xhr.send(fd); } </script> <form method="POST" enctype="multipart/form-data"> <input type="file" name="userImage" id="userImage"/> <button type="button" onclick="userUpload()">上傳頭像</button> </form>

2.使用Flash組件進行大文件切片上傳并展示上傳進度。

function uploadStart(file){ var fileRef=document.getElementById("fileRef"); fileRef.browse(["*.jpg","*.jpeg","*.png","*.gif"]); //限定上傳文件格式 var upType = file.name.split(".").pop().toLowerCase(); if($.inArray(upType,["jpg","jpeg","png","gif"])<0){ //檢查上傳文件格式 alert("請上傳正確格式的圖片!"); return false; } fileRef.upload(URL, file.id,UPLOADTYPE); //調用Flash上傳函數 } function uploadProgress(file,bytesLoaded,bytesTotal){ var pct=bytesLoaded/bytesTotal*100+"%"; $("#"+file.id+" .progressbar").css("width",pct); $("#"+file.id+" .textProgressbar").html(pct+" Complete"); } function uploadComplete(file,response){ if(response.hasOwnProperty("error")){ //處理上傳失敗情況 alert(response.error); }else if(response.hasOwnProperty("success")){ //處理上傳成功情況 alert(response.success); } }

3.利用php對上傳文件進行接收處理并存儲至服務器。
<?php
$uploads_dir = '/user/images/'; //設置存儲路徑
if(($_FILES["userImage"]["type"]=="image/jpeg")||($_FILES["userImage"]["type"]=="image/png")||($_FILES["userImage"]["type"]=="image/gif")&&$_FILES["userImage"]["size"]<1048576){
//接收文件并存儲
$tmp_name=$_FILES["userImage"]["tmp_name"];
$name=$_FILES["userImage"]["name"];
move_uploaded_file($tmp_name, "$uploads_dir/$name");
echo "success"; //上傳成功
}else{
echo "error"; //上傳失敗
}
?>
總結 以上代碼只是php flash上傳頭像最基本的實現方式之一,要保證上傳頭像的安全和穩定,還需要加入一些安全驗證機制和錯誤處理。希望本文的介紹對大家有所幫助,更好的完善php flash上傳頭像功能。