Possible Duplicate:
what are the differences in die() and exit() in PHP?
I guess the main question is what is the difference between the 3 exactly?
What is the correct semantic usage for each one of these?
From what I see return false;
can discontinue a function whereas die();
and exit();
will prevent any further code running at all.
Is this correct?