1234567891011121314151617181920212223242526272829303132333435 |
- <?php
-
-
- namespace app\api\controller;
-
- use common\util\File;
- use think\log;
- use think\Image;
- use think\Request;
-
- class Ueditor extends Base
- {
- private $sub_name = array('date', 'Ymd');
- private $savePath = 'allimg/';
- private $fileExt = 'jpg,png,gif,jpeg,bmp,ico,webp';
-
- public function __construct()
- {
- parent::__construct();
- exit;
- }
- }
|