二款php文件上传程序

这二款文件上传程序应该是php中文件上传功能最简单的吧,基本没做任何判断,直接把文件上传到了服务器.

第一款文件上传代码:

  1. $sort=12;
  2. $f_type=strtolower("swf,jpg,rar,zip,7z,iso,gif");//设置可上传的文件类型
  3. $file_size_max=200*1024*1024;//限制单个文件上传最大容量//开源代码phpfensi.com
  4. $overwrite = 0;//是否允许覆盖相同文件,1:允许,0:不允许
  5. $f_input="files";//设置上传域名称
  6. foreach($_files[$f_input]["error"] as $key => $error){
  7. $up_error="no";
  8. if ($error == upload_err_ok){
  9. $f_name=$_files[$f_input]['name'][$key];//获取上传源文件名
  10. $uploadfile=$uploaddir.strtolower(basename($f_name));
  11. $tmp_type=substr(strrchr($f_name,"."),1);//获取文件扩展名
  12. $tmp_type=strtolower($tmp_type);
  13. if(!stristr($f_type,$tmp_type)){
  14. echo "<script>alert('对不起,不能上传".$tmp_type."格式文件, ".$f_name." 文件上传失败!')</script>";
  15. $up_error="yes";
  16. }
  17. if ($_files[$f_input]['size'][$key]>$file_size_max) {
  18. echo "<script>alert('对不起,你上传的文件 ".$f_name." 容量为".round($_files[$f_input]
  19. ['size'][$key]/1024)."kb,大于规定的".($file_size_max/1024)."kb,上传失败!')</script>";
  20. $up_error="yes";
  21. }
  22. if (file_exists($uploadfile)&&!$overwrite){
  23. echo "<script>alert('对不起,文件 ".$f_name." 已经存在,上传失败!')</script>";
  24. $up_error="yes";
  25. }
  26. $string = 'abcdefghijklmnopgrstuvwxyz0123456789';
  27. $rand = '';
  28. for ($x=0;$x<12;$x++)
  29. $rand .= substr($string,mt_rand(0,strlen($string)-1),1);
  30. $t=date("ymdhis").substr($gettime[0],2,6).$rand;
  31. $attdir="./file/";
  32. if(!is_dir($attdir))
  33. { mkdir($attdir);}
  34. $uploadfile=$attdir.$t.".".$tmp_type;
  35. if(($up_error!="yes") and (move_uploaded_file($_files[$f_input]['tmp_name']
  36. [$key], $uploadfile))){
  37. $_msg=$_msg.$f_name.'上传成功 ';
  38. }
  39. else{
  40. $_msg=$_msg.$f_name.'上传失败 ';
  41. }
  42. }
  43. }
  44. echo "<script>window.parent.finish('".$_msg."');</script>";
  45. ?>

第二款文件上传代码:

  1. $destination_path = '../../upfile/jianjulogo/';//getcwd().directory_separator;
  2. $result = 0;
  3. $target_path = $destination_path . basename( $_files['myfile']['name']);
  4. if(@move_uploaded_file($_files['myfile']['tmp_name'], $target_path)) {
  5. $result = 1;
  6. }
  7. echo $target_path;
  8. sleep(1);
  9. ?>
  10. <script language= type="text/javascript">window.top.window.stopupload(