我对OOP有疑问:
我刚开始使用PHP中的OOP。现在我一直在关注一个教程,在那个教程中他们创建了一个重定向的课程。
class Redirect {
public function to($target) {
header('location '. $target);
}
}
现在我想知道在exit;
header();
答案 0 :(得分:2)
在发送exit;
后使用Location: header
通常是一种很好的做法。否则,脚本执行不会终止。其余的代码将被执行,重定向后根本不需要。