upload_json.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php
  2. /**
  3. * KindEditor PHP
  4. *
  5. * 本PHP程序是演示程序,建议不要直接在实际项目中使用。
  6. * 如果您确定直接使用本程序,使用之前请仔细确认相关安全设置。
  7. *
  8. */
  9. require_once 'JSON.php';
  10. $php_path = dirname(__FILE__) . '/';
  11. $php_url = dirname($_SERVER['PHP_SELF']) . '/';
  12. //文件保存目录路径
  13. $save_path = $php_path . '../attached/';
  14. //文件保存目录URL
  15. $save_url = $php_url . '../attached/';
  16. //定义允许上传的文件扩展名
  17. $ext_arr = array(
  18. 'image' => array('gif', 'jpg', 'jpeg', 'png', 'bmp'),
  19. 'flash' => array('swf', 'flv'),
  20. 'media' => array('swf', 'flv', 'mp3', 'wav', 'wma', 'wmv', 'mid', 'avi', 'mpg', 'asf', 'rm', 'rmvb'),
  21. 'file' => array('doc', 'docx', 'xls', 'xlsx', 'ppt', 'htm', 'html', 'txt', 'zip', 'rar', 'gz', 'bz2'),
  22. );
  23. //最大文件大小
  24. $max_size = 1000000;
  25. $save_path = realpath($save_path) . '/';
  26. //PHP上传失败
  27. if (!empty($_FILES['imgFile']['error'])) {
  28. switch($_FILES['imgFile']['error']){
  29. case '1':
  30. $error = '超过php.ini允许的大小。';
  31. break;
  32. case '2':
  33. $error = '超过表单允许的大小。';
  34. break;
  35. case '3':
  36. $error = '图片只有部分被上传。';
  37. break;
  38. case '4':
  39. $error = '请选择图片。';
  40. break;
  41. case '6':
  42. $error = '找不到临时目录。';
  43. break;
  44. case '7':
  45. $error = '写文件到硬盘出错。';
  46. break;
  47. case '8':
  48. $error = 'File upload stopped by extension。';
  49. break;
  50. case '999':
  51. default:
  52. $error = '未知错误。';
  53. }
  54. alert($error);
  55. }
  56. //有上传文件时
  57. if (empty($_FILES) === false) {
  58. //原文件名
  59. $file_name = $_FILES['imgFile']['name'];
  60. //服务器上临时文件名
  61. $tmp_name = $_FILES['imgFile']['tmp_name'];
  62. //文件大小
  63. $file_size = $_FILES['imgFile']['size'];
  64. //检查文件名
  65. if (!$file_name) {
  66. alert("请选择文件。");
  67. }
  68. //检查目录
  69. if (@is_dir($save_path) === false) {
  70. alert("上传目录不存在。");
  71. }
  72. //检查目录写权限
  73. if (@is_writable($save_path) === false) {
  74. alert("上传目录没有写权限。");
  75. }
  76. //检查是否已上传
  77. if (@is_uploaded_file($tmp_name) === false) {
  78. alert("上传失败。");
  79. }
  80. //检查文件大小
  81. if ($file_size > $max_size) {
  82. alert("上传文件大小超过限制。");
  83. }
  84. //检查目录名
  85. $dir_name = empty($_GET['dir']) ? 'image' : trim($_GET['dir']);
  86. if (empty($ext_arr[$dir_name])) {
  87. alert("目录名不正确。");
  88. }
  89. //获得文件扩展名
  90. $temp_arr = explode(".", $file_name);
  91. $file_ext = array_pop($temp_arr);
  92. $file_ext = trim($file_ext);
  93. $file_ext = strtolower($file_ext);
  94. //检查扩展名
  95. if (in_array($file_ext, $ext_arr[$dir_name]) === false) {
  96. alert("上传文件扩展名是不允许的扩展名。\n只允许" . implode(",", $ext_arr[$dir_name]) . "格式。");
  97. }
  98. //创建文件夹
  99. if ($dir_name !== '') {
  100. $save_path .= $dir_name . "/";
  101. $save_url .= $dir_name . "/";
  102. if (!file_exists($save_path)) {
  103. mkdir($save_path);
  104. }
  105. }
  106. $ymd = date("Ymd");
  107. $save_path .= $ymd . "/";
  108. $save_url .= $ymd . "/";
  109. if (!file_exists($save_path)) {
  110. mkdir($save_path);
  111. }
  112. //新文件名
  113. $new_file_name = date("YmdHis") . '_' . rand(10000, 99999) . '.' . $file_ext;
  114. //移动文件
  115. $file_path = $save_path . $new_file_name;
  116. if (move_uploaded_file($tmp_name, $file_path) === false) {
  117. alert("上传文件失败。");
  118. }
  119. @chmod($file_path, 0644);
  120. $file_url = $save_url . $new_file_name;
  121. header('Content-type: text/html; charset=UTF-8');
  122. $json = new Services_JSON();
  123. echo $json->encode(array('error' => 0, 'url' => $file_url));
  124. exit;
  125. }
  126. function alert($msg) {
  127. header('Content-type: text/html; charset=UTF-8');
  128. $json = new Services_JSON();
  129. echo $json->encode(array('error' => 1, 'message' => $msg));
  130. exit;
  131. }