Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
The difference is the name of the functions, not the functionality of the functions. – hakre Jul 20 '11 at 23:15
possible duplicate of exit(); die(); return false; – derobert Dec 13 '11 at 16:25
@derobert That question has just been closed as an exact dup to this one. – Shawn Chin Dec 13 '11 at 18:12
@ShawnChin: I suggested we do it the other way, but apparently others disagreed. – derobert Dec 13 '11 at 18:15
die() and exit() are different in other languages but in php just read this beastwithin.org/users/wwwwolf/code/phprant.html – Samuel Mar 6 '12 at 13:41

5 Answers

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().

share|improve this answer
12  
then why two function :p – coderex Nov 25 '09 at 6:33
2  
aliases allows programmers to use the one which is comfortable with. I remember exit better than die. Some others remember die better than exit. – mauris Nov 25 '09 at 6:35
22  
Maybe the die function call was created to make Perl programmers feel at home. – pavium Nov 25 '09 at 6:56
1  
ok, ok.. i think need to create a "boundry" for this Question, right? :) because i want to know "why two functions". thanks for all your answers :) – coderex Nov 25 '09 at 7:08
8  
this (php.net/manual/en/aliases.php) might give some explanation why 2 functions do the same thing – Marek Karbarz Nov 25 '09 at 7:17

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.

share|improve this answer
I just took a PHP quiz on w3schools.com Question: In PHP, the die() and exit() functions do the exact same thing. You answered: True Wrong Answer! – Lucky Soni Mar 20 at 23:51
1  
@LuckySoni thats your fault for taking a quiz at w3schools.com in the first place. – chacham15 Apr 11 at 18:02

They are essentially the same, though this article suggest otherwise.

share|improve this answer

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:

<?php
echo "I am going to die";
exit(0);
?>

Which is the same as:

<?php
die("I am going to die");
?>
share|improve this answer
14  
That's not true. die and exit are identical (they produce the same parser token (T_EXIT) and are executed by the same code). If the parameter is an integer, it will return that code to the shell. If it is not, it will output it and return 0. So die and exit are literally aliases for each-other. – ircmaxell Apr 29 '11 at 13:25
well if you know you can use exit("I'm exiting..."); – Gunslinger_ Apr 11 at 8:33

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

The exit() function prints a message and exits the current script.
This function is an alias of the die() function.

share|improve this answer

protected by Brad Dec 21 '12 at 15:03

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.

Not the answer you're looking for? Browse other questions tagged or ask your own question.