我试图理解 Post-Redirect-Get 模式,在几个示例中,人们exit()
在重定向之后放置了一个,如下所示:
if ($_POST) {
// Execute code (such as database updates) here.
// Redirect to this page.
header("Location: " . $_SERVER['REQUEST_URI']);
exit();
}
我的问题是关于exit()
功能的。它的作用是什么?对我来说,它永远不会被阅读,因为页面在“php解释器”到达之前被重定向。