what are the differences in die() and exit() function in php, I think both have the same functionality. But i know there is something different in both.. what are they?
feedback
|
|
There's no difference - they are the same. PHP Manual for
PHP Manual for
| |||||||||||||||||||
feedback
|
|
They sound about the same, however, the exit() also allows you to set the exit code of your PHP script. Usually you don't really need this, but when writing console PHP scripts, you might want to check with for example Bash if the script completed everything in the right way. Then you can use exit() and catch that later on. Die() however doesn't support that. Die() always exists with code 0. So essentially a die() command does the following:
Which is the same as:
| |||||
feedback
|