在調用重定向函數頭之後,我應該調用exit還是不?php - 我應該在調用Location:header之後調用exit()嗎?
<?php // fileA
$urlFailToGoTo = '/formerror.php';
if (sth)
{
header(sprintf("Location: %s", $urlFailToGoTo));
exit(); //should I call exit() here? or return?
}
?>
謝謝
可能的重複[爲什麼我必須在通過頭('地點..')在PHP重定向後調用'退出'](http://stackoverflow.com/questions/2747791/why-i-have-to-call- exit-after-redirection-through-headerlocation-in-php) – 2014-10-14 17:52:49