flash多文件上传实例

时间:2016-01-01 11:03:50
【文件属性】:
文件名称:flash多文件上传实例
文件大小:24KB
文件格式:ZIP
更新时间:2016-01-01 11:03:50
flash上传 多文件上传 flash多文件上传实例, <?php if ($_FILES ["Filedata"] ["error"] > 0) { exit("Error: " . $_FILES ["Filedata"]["error"]); } echo "
----------存储图片--------
"; $fileName = iconv("utf-8","gb2312", $_FILES ["Filedata"]["name"]); $reallyName = "upload/".$fileName; if (file_exists ($reallyName)) { echo $_FILES ["Filedata"]["name"]. " already exists. "; } else { if (!is_dir("upload")) { mkdir("upload"); } move_uploaded_file( $_FILES ["Filedata"]["tmp_name"], $reallyName); echo "Stored in: " . "upload/" . $fileName; } ?>
【文件预览】:
index.php
multiUpload.as3proj
multiImageUpload.fla
CustomFileReferenceList.as
MultiImageUpload.as
multiImageUpload.swf

网友评论