You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

118 lines
3.4 KiB

3 years ago
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
  10. // +----------------------------------------------------------------------
  11. namespace Think\Upload\Driver;
  12. class Local{
  13. /**
  14. * 上传文件根目录
  15. * @var string
  16. */
  17. private $rootPath;
  18. /**
  19. * 本地上传错误信息
  20. * @var string
  21. */
  22. private $error = ''; //上传错误信息
  23. /**
  24. * 构造函数,用于设置上传根路径
  25. */
  26. public function __construct($config = null){
  27. }
  28. /**
  29. * 检测上传根目录
  30. * @param string $rootpath 根目录
  31. * @return boolean true-检测通过,false-检测失败
  32. */
  33. public function checkRootPath($rootpath){
  34. if(!(is_dir($rootpath) && is_writable($rootpath))){
  35. $this->error = '上传根目录不存在!请尝试手动创建:'.$rootpath;
  36. return false;
  37. }
  38. $this->rootPath = $rootpath;
  39. return true;
  40. }
  41. /**
  42. * 检测上传目录
  43. * @param string $savepath 上传目录
  44. * @return boolean 检测结果,true-通过,false-失败
  45. */
  46. public function checkSavePath($savepath){
  47. /* 检测并创建目录 */
  48. if (!$this->mkdir($savepath)) {
  49. return false;
  50. } else {
  51. /* 检测目录是否可写 */
  52. if (!is_writable($this->rootPath . $savepath)) {
  53. $this->error = '上传目录 ' . $savepath . ' 不可写!';
  54. return false;
  55. } else {
  56. return true;
  57. }
  58. }
  59. }
  60. /**
  61. * 保存指定文件
  62. * @param array $file 保存的文件信息
  63. * @param boolean $replace 同名文件是否覆盖
  64. * @return boolean 保存状态,true-成功,false-失败
  65. */
  66. public function save($file, $replace=true) {
  67. $filename = $this->rootPath . $file['savepath'] . $file['savename'];
  68. /* 不覆盖同名文件 */
  69. if (!$replace && is_file($filename)) {
  70. $this->error = '存在同名文件' . $file['savename'];
  71. return false;
  72. }
  73. /* 移动文件 */
  74. if (!move_uploaded_file($file['tmp_name'], $filename)) {
  75. $this->error = '文件上传保存错误!';
  76. return false;
  77. }
  78. return true;
  79. }
  80. /**
  81. * 创建目录
  82. * @param string $savepath 要创建的穆里
  83. * @return boolean 创建状态,true-成功,false-失败
  84. */
  85. public function mkdir($savepath){
  86. $dir = $this->rootPath . $savepath;
  87. if(is_dir($dir)){
  88. return true;
  89. }
  90. if(mkdir($dir, 0777, true)){
  91. return true;
  92. } else {
  93. $this->error = "目录 {$savepath} 创建失败!";
  94. return false;
  95. }
  96. }
  97. /**
  98. * 获取最后一次上传错误信息
  99. * @return string 错误信息
  100. */
  101. public function getError(){
  102. return $this->error;
  103. }
  104. }