當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DB_Functions::forgotPassword方法代碼示例

本文整理匯總了PHP中DB_Functions::forgotPassword方法的典型用法代碼示例。如果您正苦於以下問題:PHP DB_Functions::forgotPassword方法的具體用法?PHP DB_Functions::forgotPassword怎麽用?PHP DB_Functions::forgotPassword使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DB_Functions的用法示例。


在下文中一共展示了DB_Functions::forgotPassword方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: mail

     $response["points"] = $points;
     echo json_encode($response);
 } else {
     if ($tag == 'chgpass') {
         $email = $_POST['email'];
         $newpassword = $_POST['newpas'];
         $hash = $db->hashSSHA($newpassword);
         $encrypted_password = $hash["encrypted"];
         // encrypted password
         $salt = $hash["salt"];
         $subject = "Change Password Notification";
         $message = "Hello Piggy Rewards Customer,\n\nYour Password has been sucessfully changed.\n\nRegards,\\Piggy Rewards Team.";
         $from = "svetvaz@gmail.com";
         $headers = "From: svetvaz@gmail.com";
         if ($db->isUserExisted($email)) {
             $user = $db->forgotPassword($email, $encrypted_password, $salt);
             if ($user) {
                 $response["success"] = 1;
                 mail($email, $subject, $message, $headers);
                 echo json_encode($response);
             } else {
                 $response["error"] = 1;
                 echo json_encode($response);
             }
             // user is already existed - error response
         } else {
             $response["error"] = 2;
             $response["error_msg"] = "User does not exist";
             echo json_encode($response);
         }
     } else {
開發者ID:yangmc423,項目名稱:AndroidLoginExample,代碼行數:31,代碼來源:index.php

示例2: elseif

         } else {
             // User failed To Register
             $response["error"] = 1;
             $response["error_msg"] = "JSON Error Occurred in Registration";
             echo json_encode($response);
         }
     }
 } elseif ($tag == 'chgpass') {
     $email = $_POST["email"];
     $newpassword = $_POST["newpas"];
     $subject = "Change Password Notification";
     $message = "Hello User, \n\nYour Password is successfully Changed. \n\nRegards, \nINeedAHelp Team";
     $from = "support@ineedahelp.com";
     $headers = "From:" . $from;
     if ($db->isUserExisted($phone)) {
         $user = $db->forgotPassword($phone, $newpassword);
         if ($user) {
             $response["success"] = 1;
             mail($email, $subject, $message, $headers);
             echo json_encode($response);
         } else {
             $response["error"] = 1;
             echo json_encode($response);
         }
     } else {
         // User is Already existed - error Response
         $response["error"] = 2;
         $response["error_msg"] = "User Not Exists";
         echo json_encode($response);
     }
 } elseif ($tag == 'forpass') {
開發者ID:AlaminMahamud,項目名稱:LETS-GO-ANDROID,代碼行數:31,代碼來源:index.php


注:本文中的DB_Functions::forgotPassword方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。