Base.php
626 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
namespace Controller;
use Model\emailSql;
/**
* 基础控制器,根据需求 可以不继承此类
* @author:dc
* @time 2023/2/18 16:34
* Class Base
* @package Controller
*/
abstract class Base {
/**
* 当前登录的邮箱
* @var array[]
*/
protected $login_email;
/**
* 构造
* Home constructor.
*/
public function __construct()
{
// 获取 当前请求的 邮箱
$this->login_email = db()->first(emailSql::firstByToken(token()));
if(!$this->login_email){
app()->e('token_verify_notfound');
}
}
}