Après avoir appelé l'en-tête de la fonction de redirection, dois-je appeler exit ou non ?
<?php // fileA
$urlFailToGoTo = '/formerror.php';
if (sth)
{
header(sprintf("Location: %s", $urlFailToGoTo));
exit(); //should I call exit() here? or return?
}
?>
Merci.