php實作手機註冊的方法:1、將介面位址和appkey放在設定檔中;2、封裝sendmsg函數,使用curl發送請求;3、在控制器中定義sendcode方法;4、調用sendmsg函數實作驗證碼簡訊發送功能。
本文操作環境:windows10系統、php 7、thindpad t480電腦。
我們在使用手機號碼註冊時通常需要發送簡訊驗證碼,在進行修改密碼等敏感操作時也需要手機號碼發送簡訊驗證碼。那麼在實際專案中如果要發送簡訊驗證碼該如何做呢?通常是需要呼叫第三方簡訊商的簡訊發送介面。
下面就讓我們一起來看看如何實現吧!
手機註冊:
可以將介面位址和appkey放在設定檔中。封裝一個函數sendmsg用於發送短信,可以用PHP中的curl請求方式(PHP中的curl函數庫)發送請求。
if (!function_exists('sendmsg')) { function sendmsg($phone, $msg){ //从配置文件读取接口信息 $gateway = config('msg.gateway'); $appkey = config('msg.appkey'); //准备请求地址 $url = $gateway . "?appkey=" . $appkey . "&mobile=" . $phone . "&content=" . $msg; //发送请求 比如get方式 https请求 $res = curl_request($url, false, [], true); if (!$res) { return "请求发送失败"; } //请求发送成功,返回值json格式字符串 $arr = json_decode($res, true); if ($arr['code'] == 10000) { return true; } return $arr['msg']; } }
在控制器裡定義一個sendcode方法,當前台點擊發送驗證碼發送ajax請求,該方法接收到前台註冊用戶的手機號,調用sendmsg函數實現驗證碼短信發送功能。
//ajax请求发送注册验证码 public function sendcode($phone) { //参数验证 if (empty($phone)) { return ['code' => 10002, 'msg' => '参数错误']; } //短信内容 您用于注册的验证码为:****,如非本人操作,请忽略。 $code = mt_rand(1000, 9999); $msg = "您用于注册的验证码为:{$code},如非本人操作,请忽略。"; //发送短信 $res = sendmsg($phone, $msg); if ($res === true) { //发送成功,存储验证码到session 用于后续验证码的校验 session('register_code_' . $phone, $code); return ['code' => 10000, 'msg' => '发送成功', 'data' => $code]; } return ['code' => 10001, 'msg' => $res]; }
郵箱註冊:
PHP中郵箱註冊可以使用PHPMailer外掛程式來實現郵件發送(具體可查看PHPMailer手冊)。在設定檔中設定郵件帳號訊息,封裝一個send_email函數使用phpmailer傳送郵件。
if (!function_exists('send_email')) { //使用PHPMailer发送邮件 function send_email($email, $subject, $body){ //实例化PHPMailer类 不传参数(如果传true,表示发生错误时抛异常) $mail = new PHPMailer(); // $mail->SMTPDebug = 2; //调试时,开启过程中的输出 $mail->isSMTP(); // 设置使用SMTP服务 $mail->Host = config('email.host'); // 设置邮件服务器的地址 $mail->SMTPAuth = true; // 开启SMTP认证 $mail->Username = config('email.email'); // 设置邮箱账号 $mail->Password = config('email.password'); // 设置密码(授权码) $mail->SMTPSecure = 'tls'; //设置加密方式 tls ssl $mail->Port = 25; // 邮件发送端口 $mail->CharSet = 'utf-8'; //设置字符编码 //Recipients $mail->setFrom(config('email.email'));//发件人 $mail->addAddress($email); // 收件人 //Content $mail->isHTML(true); // 设置邮件内容为html格式 $mail->Subject = $subject; //主题 $mail->Body = $body;//邮件正文 // $mail->AltBody = 'This is the body in plain text for non-HTML mail clients'; if ($mail->send()) { return true; } return $mail->ErrorInfo; // $mail->ErrorInfo } }
然後在控制器的方法中呼叫函數,實作本郵箱會傳送驗證郵件功能給註冊使用者信箱。
推薦學習:php培訓
以上是php如何實現手機註冊的詳細內容。更多資訊請關注PHP中文網其他相關文章!