1234567891011121314151617181920212223 |
- <?php
- namespace Collection\Lib;
- use Dever;
- class Core
- {
- protected $token;
- protected $uid;
- protected $user;
- protected $year;
- public function __construct()
- {
- # 获取当前的用户信息
- $this->token = Dever::input('token');
- $this->uid = 1;
- $this->user = Dever::load('passport/api')->info($this->uid);
- # 获取时光id
- $this->times = Dever::input('times');
- }
- }
|