mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2024-11-17 00:58:55 +00:00
16 lines
369 B
PHP
16 lines
369 B
PHP
|
<?php
|
||
|
|
||
|
namespace Home\Controller;
|
||
|
|
||
|
use Think\Controller;
|
||
|
|
||
|
class MailController extends Controller {
|
||
|
public function Check($mail) {
|
||
|
$data = M ( 'mail' )->where ( array ('address' => $mail ) )->find ();
|
||
|
if ($data == null) {
|
||
|
$this->success ( "邮箱未被注册!", '', true );
|
||
|
} else {
|
||
|
$this->error ( "邮箱已被注册!", '', true );
|
||
|
}
|
||
|
}
|
||
|
}
|