本文整理匯總了PHP中Redirect::RedirectTo方法的典型用法代碼示例。如果您正苦於以下問題:PHP Redirect::RedirectTo方法的具體用法?PHP Redirect::RedirectTo怎麽用?PHP Redirect::RedirectTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Redirect
的用法示例。
在下文中一共展示了Redirect::RedirectTo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1:
<?php
require_once "src/init.php";
$session->logout();
//$msg->success('You have logged out.');
Redirect::RedirectTo();
示例2: die
$pageTitle = "Generate a new question";
if (!$session->is_logged_in()) {
$session->message("You must log in to submit a new question.", "", "danger");
}
if (isset($_POST['submit'])) {
$data = $_POST;
$token = $data['token'];
if (!Token::validateToken($token)) {
die(json_encode(['status' => false, 'err' => 'Token is not valid']));
}
unset($data['token']);
unset($data['submit']);
$data['uid'] = USER_ID;
$QNA = new QNA();
$gen = $QNA->generate_question($data);
Redirect::RedirectTo('/questions/question.php?id=' . $gen);
}
include ROOT_PATH . 'inc/head.php';
?>
<body>
<div class="ui container section">
<div class="ui raised very padded segment">
<h2>Generate a story</h2>
<p>Random title and content will be generated by using the <a href="http://loripsum.net">loripsum.net</a> api.<br>
You can pass custom options for the content to be generated.</p><br>
<form class="ui form create_q" method="POST">
<div class="field">
<label for="fruit">Number of Paragraph</label>
<select name='num'>
<option value="1">1</option>
<option value="2">2</option>