PHP后台登录 接口

/**
* 登录
* tel 手机号
*/
public function login(){
$param=input('param.');
if(!empty($param['tel'])){
if(preg_match("/^1[34578]{1}\d{9}$/",$param['tel'])){
$data=db('people')->where('tel',$param['tel'])->find();
if($data){
session('tid',$data['id']);
return json(['code'=>1,'message'=>'登陆成功']);
}else{
$tel=db('people')->insertGetId(['tel'=>$param['tel']]);
session('tid',$tel);
return json(['code'=>1,'message'=>'登陆成功']);
}
}else{
return json(['code'=>2,'message'=>'手机格式不正确']);
}
}else{
return json(['code'=>3,'message'=>'手机号不能为空']);
}
}

posted on 2018-07-04 13:09  旺仔小裤头  阅读(1360)  评论(0编辑  收藏  举报