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


PHP LogHelper::info方法代碼示例

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


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

示例1: postForgotPassword

 public function postForgotPassword(Request $request)
 {
     $validator = Validator::make($request->all(), ['email' => 'required|email']);
     if ($validator->fails()) {
         return Redirect::route('user.forgot-password')->withErrors($validator)->withInput();
     } else {
         $user = User::where('email', '=', $request->get('email'));
         if ($user->count()) {
             $user = $user->first();
             $code = str_random(60);
             //檢查是否曾有驗證碼記錄
             if (DB::table('password_resets')->where('email', '=', $user->email)->count()) {
                 //更新找回密碼的驗證碼
                 DB::table('password_resets')->where('email', '=', $user->email)->update(['token' => $code, 'created_at' => Carbon::now()->toDateTimeString()]);
             } else {
                 //產生找回密碼的驗證碼
                 DB::table('password_resets')->insert(['email' => $user->email, 'token' => $code, 'created_at' => Carbon::now()->toDateTimeString()]);
             }
             if ($user->save()) {
                 try {
                     //發送信件
                     Mail::send('emails.forgot', ['link' => URL::route('user.reset-password', $code)], function ($message) use($user) {
                         $message->to($user->email)->subject("[" . Config::get('site.name') . "] 重新設定密碼");
                     });
                 } catch (Exception $e) {
                     //Log
                     LogHelper::info('[SendEmailFailed] 發送失敗:無法寄出密碼重設信件給' . $user->email, ['email' => $user->email, 'ip' => $request->getClientIp()]);
                     return Redirect::route('user.forgot-password')->with('warning', '無法寄出密碼重設信件,請稍後再嘗試。');
                 }
                 return Redirect::route('home')->with('global', '更換密碼的連結已發送至信箱。');
             }
         } else {
             return Redirect::route('user.forgot-password')->with('warning', '此信箱仍未註冊成為會員。');
         }
     }
     return Redirect::route('user.forgot-password')->with('warning', '無法取得更換密碼的連結。');
 }
開發者ID:alhs1995,項目名稱:DBFP,代碼行數:37,代碼來源:UserController.php


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