当前位置: 首页>>代码示例>>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;未经允许,请勿转载。