Heim  >  Artikel  >  Backend-Entwicklung  >  PHP上传图片的简单例子(入门参考)

PHP上传图片的简单例子(入门参考)

WBOY
WBOYOriginal
2016-07-25 08:59:551270Durchsuche
复制代码

2、admin_upfile.php

  1. date_default_timezone_set('PRC');
  2. //这里上传 $upsize判断上传文件的大小
  3. $uppath = isset($_REQUEST["upPath"]) ? $_REQUEST["upPath"] : "/attached/"; //文件上传路径
  4. $formName = isset($_REQUEST["formName"]) ? $_REQUEST["formName"] : "myform"; //回传到上页面编辑框所在Form的Name
  5. $editName = isset($_REQUEST["editName"]) ? $_REQUEST["editName"] : $_REQUEST["editName"]; //回传到上页面编辑框的Name
  6. //转换根目录的路径
  7. if (strpos($uppath, "/") == 0) {
  8. $i = 0;
  9. $thpath = $_SERVER["SCRIPT_NAME"];
  10. $thpath = substr($thpath, 1, strlen($thpath));
  11. while (strripos($thpath, "/") !== false) {
  12. $thpath = substr($thpath, strpos($thpath, "/") + 1, strlen($thpath));
  13. $i = ++$i;
  14. }
  15. $pp = "";
  16. for ($j = 0; $j $pp .="../";
  17. }
  18. $uppaths = $pp . substr($uppath, 1, strlen($thpath));
  19. }
  20. $filename = date("y-m-d");
  21. if (is_dir($uppaths . $filename) != TRUE)
  22. mkdir($uppaths . $filename, 0777);
  23. // if(is_dir($filename."/".$ctime)!=TRUE) mkdir($filename."/".$ctime,0777);
  24. $f = $_FILES['file1'];
  25. if ($f["type"] != "image/gif" && $f["type"] != "image/pjpeg" && $f["type"] != "image/jpeg" && $f["type"] != "image/x-png") {
  26. echo "<script>alert('只能上传图片格式的文件');window.close()</script>";
  27. //echo $f['type'];
  28. return false;
  29. }
  30. //获得文件扩展名
  31. $temp_arr = explode(".", $f["name"]);
  32. $file_ext = array_pop($temp_arr);
  33. $file_ext = trim($file_ext);
  34. $file_ext = strtolower($file_ext);
  35. //新文件名
  36. $new_file_name = md5(date("YmdHis")) . '.' . $file_ext;
  37. //$new_file_name = md5(date("YmdHis") . '_' . rand(10000, 99999)) . '.' . $file_ext;
  38. $dest = $uppaths . $filename . "/" . date("ymdhis") . "_" . $new_file_name; //设置文件名为日期加上文件名避免重复 上传目录
  39. $dest1 = $uppath . $filename . "/" . date("ymdhis") . "_" . $new_file_name; //设置文件名为日期加上文件名避免重复
  40. $r = move_uploaded_file($f['tmp_name'], $dest);
  41. if ($f['size'] > 0) {
  42. echo "<script>window.opener.document." . $formName . "." . $editName . ".value='" . $dest1 . "'</script>";
  43. echo "<script>alert('图片上传成功');window.close()</script>";
  44. }
  45. ?>
复制代码

3、admin_upload.php

  1. 图片上传_bbs.it-home.org
  2. $uppath = isset($_REQUEST["upPath"]) ? $_REQUEST["upPath"] . "/" : "/attached/"; //文件上传路径
  3. $formName = isset($_REQUEST["formName"]) ? $_REQUEST["formName"] : "myform"; //回传到上页面编辑框所在Form的Name
  4. $editName = isset($_REQUEST["editName"]) ? $_REQUEST["editName"] : $_REQUEST["editName"]; //回传到上页面编辑框的Name
  5. ?>
  6. 正在上传文件,请稍候...
  • 图 片 上 传
  • 选择文件:

  • 复制代码


    Stellungnahme:
    Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn