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


PHP context::redirect方法代碼示例

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


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

示例1: finInscription

 public static function finInscription($request, $context)
 {
     try {
         // On cherche l'utilisateur par son identifiant
         if (is_null(utilisateurTable::getUserByLogin($request["identifiantInscrip"]))) {
             // Si l'identifiant n'existe pas, on continue
             $data = array("identifiant" => $request["identifiantInscrip"], "pass" => sha1($request["passInscrip"]), "nom" => $request["nomInscrip"], "prenom" => $request["prenomInscrip"], "statut" => "", "avatar" => "");
             $u = new utilisateur($data);
             $u->id = $u->save();
             if (is_null($u->id)) {
                 throw new Exception("Il y a eu une erreur pour inscrire l'utilisateur. Désolé.");
             } else {
                 context::setSessionAttribute("succes", "Le compte a été créé");
                 context::redirect('twitty.php');
             }
         } else {
             throw new Exception("Il existe déjà un utilisateur avec le même identifiant.");
         }
     } catch (Exception $e) {
         context::setSessionAttribute("erreur", $e);
         return context::ERROR;
     }
 }
開發者ID:uy-rrodriguez,項目名稱:twitty,代碼行數:23,代碼來源:mainController.php

示例2: vote

 public static function vote($request, $context)
 {
     //print_r($request);
     if (!empty($request['idtweet']) && $context->getSessionAttribute('is_logged') == 1) {
         $voteInfo['message'] = $request['idtweet'];
         $voteInfo['utilisateur'] = $_SESSION['id'];
         $vote = new vote($voteInfo);
         $vote->save();
         $tweetInfo['id'] = $request['idtweet'];
         $nbVotes = vote::getVote($request['idtweet']);
         //print_r($nbVotes);
         $tweetInfo['nbVotes'] = $nbVotes[0]['count'];
         $tweet = new tweet($tweetInfo);
         $tweet->save();
         context::redirect(history . back());
         return context::SUCCESS;
     }
     return context::ERROR;
 }
開發者ID:nikyasu,項目名稱:TweetLkProject,代碼行數:19,代碼來源:mainController.php


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