Save.php 940 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php namespace Upload\Api;
  2. use Dever;
  3. class Save
  4. {
  5. public function act($id = 1, $file = '')
  6. {
  7. if (!$file) {
  8. Dever::error('file不存在');
  9. }
  10. return Dever::load('save', 'upload')->act($id, $file);
  11. }
  12. public function wangEditor($id = 1, $file = '')
  13. {
  14. if (!$file) {
  15. Dever::error('file不存在');
  16. }
  17. Dever::config('setting', array('output' => array
  18. (
  19. 'status' => array('errno', array('1' => 0, '2' => 1)),
  20. 'msg' => 'message',
  21. )));
  22. return $this->act($id, $file);
  23. }
  24. public function avatar($id = 1, $file = '', $uid = false)
  25. {
  26. if (!$file) {
  27. Dever::error('file不存在');
  28. }
  29. if (!$uid) {
  30. Dever::error('uid不存在');
  31. }
  32. return Dever::load('save', 'upload')->act($id, $file, 'jpg', $uid);
  33. }
  34. }