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 is it?
|
|
There's no difference - they are the same. PHP Manual for
PHP Manual for
|
|||||||||||||||||||||
|
|
As stated before, these two commands produce the same parser token. BUT There is a small difference, and that is how long it takes the parser to return the token. I haven't studied the php parser, but if it's a long list of functions starting with "d", and a shorter list starting with "e", then there must be a time penalty looking up the function name for funtions starting with "e". And there may be other differences due to how the whole function name are checked. I doubt it will be measurable unless you have a "perfect" environment dedicated to parsing php, and a lot of requests with different parameters. But there must be a difference, after all, php is an interpreted language. |
|||||||
|
|
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:
|
|||||||
|
|
Responding to Lucky Soni commenting on Bob, Strange that w3 schools said that as it states on http://www.w3schools.com/php/func_misc_exit.asp
|
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.