1

我很想知道这之间有什么区别

header('Location:index.php'); // using  capital  `L`
exit(); // using parenthesis

header('location:index.php');
exit;

我们应该推荐使用哪一个?

4

2 回答 2

4

根据HTTP 的实际 RFC,您应该使用大写的“L”和绝对 URI:

header('Location: http://www.mysite.com/index.php');

exitvs而言exit(),没有区别。它是一种语言结构,而不是函数,括号是可选的。你甚至可以使用exit 0or exit(0)

于 2012-09-06T04:57:24.930 回答
0

退出没有区别;和退出();

并且位置应该用大写字母书写L

于 2012-09-06T04:58:53.010 回答