1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Created by PhpStorm.
- * User: stanley-king
- * Date: 2017/9/26
- * Time: 上午11:19
- */
- require_once (BASE_ROOT_PATH . '/helper/algorithm.php');
- require_once (BASE_ROOT_PATH . '/helper/login_helper.php');
- require_once (BASE_ROOT_PATH . '/helper/session_helper.php');
- require_once (BASE_ROOT_PATH . '/helper/sms_helper.php');
- class uploaderControl extends mobileControl
- {
- public function __construct()
- {
- parent::__construct();
- }
- public function __destruct()
- {
- parent::__destruct(); // TODO: Change the autogenerated stub
- }
- public function upfileOp()
- {
- }
- }
|