在经典web应用用,POST 请求后,通常会跳转到一个新的页面,而新的页面通常会带一些动态的参数,不如 `post_id`
例如,我在post提交之后,随机跳转到一个测试页面
if (isset($_POST['test']) && $_POST['test'] !== "") {
header('Location: http://' . $_SERVER['HTTP_HOST'] . '/test.php?arg=/' . rand(1, 100) . '/' . rand(1, 100));
exit;
}