Tuesday, February 23, 2016

What are the differences in die() and exit() in PHP ?

There's no difference - they are the same.
PHP Manual for exit:
Note: This language construct is equivalent to die().
PHP Manual for die:
This language construct is equivalent to exit().

No comments:

Post a Comment