本文整理汇总了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;
}
}
示例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;
}