email.php
432 字节
<?php
namespace Model;
/**
* @author:dc
* @time 2023/2/13 14:11
* Class email
*/
class email {
/**
* 通过email查询
* @param $email
* @return array
* @author:dc
* @time 2023/2/13 14:50
*/
public static function first($email){
return [
"select * from `emails` where `email` = ? limit 1",
[
$email
]
];
}
}