php+flash+jQuery多图片上传源码分享
flash+php多图片上传的源码,测试成功,一个经典的上传源码,为什么要用flash作为上传的组件呢,其实这里不仅仅是flash,另加了jquery的技术,这样做的目的是为了更好更方便的管理图片,使用过qq空间进行上传图片的童鞋都知道,qq空间的上传体验度很好,而且管理我们上传的图片非常的方便,使用的技术基本上就是flash与jquery技术了。
flash+jquery是作为前端图片上传展示的,还需要与php的结合才能将图片上传到指定的目标,这里的php一共有两个文件,一个upload.php 是上传的核心代码,index.php 便是整合 flash+php+jquery 技术的结合,将提交上来的图片上传到目录 upload 下面,另外还有一个文件夹 images,这里面便是调用的 upload.swf flash文件和jquery.js文件了,技术已经实现了,剩下便是怎样跟数据库进行整合就很简单了,这里不再详解了。
效果图:
关键代码:
upload.php
<?php $uploaddir = 'upload/'; $filename = date("ymdhis").rand(100,999); $uploadfile = $uploaddir . $filename.substr($_files['filedata']["name"],strrpos($_files['filedata']["name"],".")); $temploadfile = $_files['filedata']['tmp_name']; move_uploaded_file($temploadfile , $uploadfile); //返回数据 在页面上js做处理 $filedata = array( 'result' => 'true', 'name' => $_files['filedata']["name"], 'filepath' => $uploadfile, ); echo json_encode($filedata); exit;
index.php
<html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <title>swfupload</title> <script src="images/jquery.js" type="text/javascript"></script> <script> /*上传错误信息提示*/ function showmessage(message){alert(message);} /*显示文件名称*/ function setfilename(id,filename){ id = replacestr(id); var htmls = '<li id="'+id+'"><p>'+filename+'</p><p class="load">0%</p></li>'; $("#uploadput").append(htmls); } /*显示上传进度*/ function setfileload(id,load){ id = replacestr(id); $("#"+id+" .load").html(load); } /*返回服务上传的数据*/ function setfilepath(id,data){ id = replacestr(id); var s = eval('('+data+')'); if(s.result=="true"){ $("#"+id).html("<img id='"+s.id+"' src='"+s.filepath+"'/><br/>"+s.name); }else{ $("#"+id).html(s.name+"上传失败"); } } /*替换特殊字符*/ function replacestr(id){ var reg = new regexp("[=,/,\,?,%,#,&,(,),!,+,-,},{,:,>,<]","g"); //创建正则regexp对象 var id = id.replace(reg,""); return id; } </script> </head> <style> .main{ width:610px; height:0px auto; border:1px solid #e1e1e1; font-size:12px; padding:10px;} .main p{ line-height:10px; width:500px; float:right; text-indent:20px;} .uploadput{ width:100%; clear:both;} ul,li{ margin:0px; padding:0px; list-style:none} .uploadput li{width:120px; padding:10px; text-align:center; border:1px solid #ccc; overflow:hidden; background-color:#e1e1e1; line-height:25px; float:left; margin:5px} .uploadput img{ width:120px; height:90px;} </style> <body> <div class="main"> <?php //获取项目跟路径 $baseurl = 'http://' . $_server ['server_name'] . (($_server ['server_port'] == 80) ? '' : ':' . $_server ['server_port']) . ((($path = str_ireplace('\\', '/', dirname ( $_server ['script_name'] ))) == '/') ? '' : $path); //设置swfupload参数 $flashvars = 'uploadurl=' . urlencode($baseurl . '/upload.php'); #上传提交地址 $flashvars.= '&buttonimageurl=' . urlencode($baseurl . '/images/upload.png'); #按钮背景图片 $flashvars.= '&btnwidth=95'; #按钮宽度 $flashvars.= '&btnheight=35'; #按钮高度 $flashvars.= '&filenumber=20'; #每次最多上传20个文件 $flashvars.= '&filesize=200'; #单个文件上传大小为20m $flashvars.= '&bgcolor=#ffffff'; #背景颜色 $flashvars.= '&filetypesdescription=images'; #选择文件类型 $flashvars.= '&filetype=*.jpg;*.png;*.gif;*.jpeg'; #选择文件后缀名 ?> <object style="float: left;" width="95" height="35" data="images/upload.swf" type="application/x-shockwave-flash"> <param value="transparent" name="wmode"> <param value="images/upload.swf" name="movie"> <param value="high" name="quality"> <param value="false" name="menu"> <param value="always" name="allowscriptaccess"> <param value="<?php echo $flashvars;?>" name="flashvars"> </object> <p>允许上传格式 jpg, gif, jepg, png ,每个文件不超过20mb,一次可上传多20张!</p> <div class="uploadput"> <ul id="uploadput"> </ul> <div style="clear: both;"></div> </div> </div> </body> </html>
其实这种组合的上传技术在许多大型的网站上面都有,更多的是应用在图片的管理上面,比如 51 空间的图片管理,基本功能都是类似的,重要的一定要学习一下 flash 与 php 之间的通信技术,在大型的开发中,这种技术会经常出现的。
源码下载:
更多精彩内容,请点击《jquery上传操作汇总》,进行深入学习和研究。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Android UI效果之绘图篇(三)
下一篇: java使用缓冲流复制文件的方法