Local.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?php
  2. /**
  3. * 本地上传驱动
  4. *
  5. *
  6. *
  7. */
  8. class UCloud_Engine_Local{
  9. /**
  10. * 上传文件根目录
  11. * @var string
  12. */
  13. private $rootPath = '../upload/';
  14. /**
  15. * 本地上传错误信息
  16. * @var string
  17. */
  18. private $error = ''; //上传错误信息
  19. /**
  20. * 构造函数,用于设置上传根路径
  21. */
  22. public function __construct($config = null){
  23. }
  24. /**
  25. * 检测上传根目录
  26. * @param string $rootpath 根目录
  27. * @return boolean true-检测通过,false-检测失败
  28. */
  29. public function checkRootPath($rootpath){
  30. if(!(is_dir($rootpath) && is_writable($rootpath))){
  31. $this->error = '上传根目录不存在!请尝试手动创建:'.$rootpath;
  32. return false;
  33. }
  34. $this->rootPath = $rootpath;
  35. return true;
  36. }
  37. /**
  38. * 检测上传目录
  39. * @param string $savepath 上传目录
  40. * @return boolean 检测结果,true-通过,false-失败
  41. */
  42. public function checkSavePath($savepath){
  43. /* 检测并创建目录 */
  44. if (!$this->mkdir($savepath)) {
  45. return false;
  46. } else {
  47. /* 检测目录是否可写 */
  48. if (!is_writable($this->rootPath . $savepath)) {
  49. $this->error = '上传目录 ' . $savepath . ' 不可写!';
  50. return false;
  51. } else {
  52. return true;
  53. }
  54. }
  55. }
  56. /**
  57. * 保存指定文件
  58. * @param array $file 保存的文件信息
  59. * @param boolean $replace 同名文件是否覆盖
  60. * @return boolean 保存状态,true-成功,false-失败
  61. */
  62. public function save($file, $replace=true) {
  63. //创建目录
  64. if(!$this->checkSavePath($file['savepath'])){
  65. return false;
  66. }
  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. }