《PHP教程:php根据用户名和手机号查询是否存在手机号码》要点:
本文介绍了PHP教程:php根据用户名和手机号查询是否存在手机号码,希望对您有用。如果有疑问,可以联系我们。
PHP编程话不多说,请看代码:
PHP编程
public function CheckMobileUser($data){
$sql='select phone,username from wlzbpre_user where phone="'.$data['phone'].'" or username="'.$data['phone'].'" and status="1" limit 1';
$phone=M()->query($sql);
$phone =$phone[0]['phone'];
$username=$phone[0]['username'];
if(empty($phone)){
$remark=array(
'RespCode'=>'081',
'RespDesc'=>'手机号/用户名不存在',
'AcctDetails'=>array('token'=>''),
);
}else{
$remark=array(
'RespCode'=>'000',
'RespDesc'=>'手机号已存在',
'AcctDetails'=>array('phone'=>$phone,'username'=>$username),
);
}
return $remark;
}
PHP编程以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持维易PHP!
转载请注明本页网址:
http://www.vephp.com/jiaocheng/1775.html