설명 없음
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.

Ueditor.php 1012B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller;
  14. use common\util\File;
  15. use think\log;
  16. use think\Image;
  17. use think\Request;
  18. /**
  19. * Class UeditorController
  20. * @package admin\Controller
  21. */
  22. class Ueditor extends Base
  23. {
  24. private $sub_name = array('date', 'Ymd');
  25. private $savePath = 'allimg/';
  26. private $fileExt = 'jpg,png,gif,jpeg,bmp,ico,webp';
  27. public function __construct()
  28. {
  29. parent::__construct();
  30. exit; // 目前没用到这个api接口
  31. }
  32. }