picupload.php 4.7 KB

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