Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我总是使用标题然后退出方法。最近我尝试了 exit(header('location: index.php')); 它似乎工作。有没有人遇到过这种方法的任何问题?
没有什么不同:
header('location: index.php'); exit;
使用exit(header('location: index.php'));该header函数时执行重定向,然后不返回任何内容,并且exit不带参数调用只是退出而没有自定义消息。
exit(header('location: index.php'));
header
exit
Exit 需要一个可选的退出代码,因此没有理由它不应该工作。但是,为了清楚起见,我仍然会打破这两行,以防万一未来版本的 php 引入不需要的行为