picupload.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <?php
  2. include "conn.php";
  3. checkLogin("");
  4. // Modern PHP file upload handler
  5. // @requires xhEditor
  6. // @author Original: Yanis.Wang<yanis.wang@gmail.com>
  7. // @site http://xheditor.com/
  8. // @licence LGPL(http://www.opensource.org/licenses/lgpl-license.php)
  9. // Converted to PHP8 with improved security and functionality
  10. $inputname = 'filedata'; // Form file field name
  11. $attachdir = 'u'; // Upload directory, no trailing slash
  12. $dirtype = 2; // 1:by day 2:by month 3:by extension
  13. $maxattachsize = 2097152; // Max upload size, default 2M
  14. $upext = 'txt,rar,zip,jpg,jpeg,gif,png,swf,wmv,avi,wma,mp3,mid'; // Allowed extensions
  15. $msgtype = 2; // Return format: 1=only url, 2=parameter array
  16. $immediate = $_GET['immediate'] ?? ''; // Immediate upload mode (demo only)
  17. $err = '';
  18. $msg = "''";
  19. // Check if file was uploaded
  20. if (!isset($_FILES[$inputname])) {
  21. $err = "无数据提交";
  22. } else {
  23. $file = $_FILES[$inputname];
  24. // Check file size
  25. if ($file['size'] > $maxattachsize) {
  26. $err = "文件大小超过 " . $maxattachsize . "字节";
  27. } else {
  28. // Check file extension
  29. $extension = strtolower(pathinfo($file['name'], PATHINFO_EXTENSION));
  30. $allowed_extensions = explode(',', $upext);
  31. if (!in_array($extension, $allowed_extensions)) {
  32. $err = "上传文件扩展名必需为:" . $upext;
  33. } else {
  34. // Create subdirectory based on dirtype
  35. switch ($dirtype) {
  36. case 1:
  37. $attach_subdir = "day_" . date("ymd");
  38. break;
  39. case 2:
  40. $attach_subdir = "m" . date("ym");
  41. break;
  42. case 3:
  43. $attach_subdir = "ext_" . $extension;
  44. break;
  45. }
  46. $attach_dir = $attachdir . "/" . $attach_subdir . "/";
  47. // Create directory if it doesn't exist
  48. if (!file_exists($attach_dir)) {
  49. mkdir($attach_dir, 0777, true);
  50. }
  51. // Generate random filename
  52. $filename = date("dHis") . rand(10, 99) . "." . $extension;
  53. $target = $attach_dir . $filename;
  54. // Move uploaded file
  55. if (move_uploaded_file($file['tmp_name'], $target)) {
  56. // Process image if it's a JPEG
  57. if (in_array($extension, ['jpg', 'jpeg']) && extension_loaded('gd')) {
  58. $image = imagecreatefromjpeg($target);
  59. if ($image) {
  60. $orig_width = imagesx($image);
  61. $orig_height = imagesy($image);
  62. $img_w = 520 / $orig_width;
  63. $img_h = 520 / $orig_height;
  64. if ($img_w < 1 || $img_h < 1) {
  65. $new_width = $img_w < $img_h ? round($orig_width * $img_h) : 520;
  66. $new_height = $img_w < $img_h ? 520 : round($orig_height * $img_w);
  67. $new_image = imagecreatetruecolor(520, 520);
  68. imagecopyresampled($new_image, $image, 0, 0, 0, 0, $new_width, $new_height, $orig_width, $orig_height);
  69. // Crop to square
  70. $final_image = imagecreatetruecolor(520, 520);
  71. imagecopyresampled($final_image, $new_image, 0, 0, 0, 0, 520, 520, 520, 520);
  72. imagejpeg($final_image, $target, 100);
  73. imagedestroy($final_image);
  74. imagedestroy($new_image);
  75. } else {
  76. imagejpeg($image, $target, 100);
  77. }
  78. imagedestroy($image);
  79. }
  80. }
  81. // Save to database
  82. $cpid = $_GET['cpid'] ?? '';
  83. $keys = urlencode($_GET['Keys'] ?? '');
  84. $ord = urlencode($_GET['Ord'] ?? '');
  85. $page = $_GET['Page'] ?? '';
  86. $sql = "INSERT INTO pic (cpid, picurl) VALUES (?, ?)";
  87. $stmt = $conn->prepare($sql);
  88. $stmt->execute([$cpid, "/system/" . $target]);
  89. header("Location: pic.php?cpid=$cpid&Page=$page&Keys=$keys&Ord=$ord");
  90. exit;
  91. } else {
  92. $err = "文件上传失败";
  93. }
  94. }
  95. }
  96. }
  97. header('Content-Type: text/html; charset=UTF-8');
  98. // If there was an error, output it
  99. if ($err !== '') {
  100. echo "<script>alert('$err');</script>";
  101. }
  102. ?>