我很想知道这之间有什么区别
header('Location:index.php'); // using capital `L`
exit(); // using parenthesis
和
header('location:index.php');
exit;
我们应该推荐使用哪一个?
根据HTTP 的实际 RFC,您应该使用大写的“L”和绝对 URI:
header('Location: http://www.mysite.com/index.php');
就exit
vs而言exit()
,没有区别。它是一种语言结构,而不是函数,括号是可选的。你甚至可以使用exit 0
or exit(0)
。
退出没有区别;和退出();
并且位置应该用大写字母书写L