さらなるコードの実行を妨げるためにbreakコマンドまたはexitコマンドを含めても問題ないですか?PHP終了、戻り値および適切なプログラミング標準
function index()
{
$error = NULL;
if ($_POST){
// validate form
if ($form_validated) {
echo 'this content only';
exit; // or return IS THIS BAD???
} else {
$error = 'form failed';
}
}
echo 'normal page on initial load';
if ($error) { echo '<br />'.$error; }
}