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?

link|improve this question

47% accept rate
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 at 13:41
feedback

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

link|improve this answer
8  
then why two function :p – coderex Nov 25 '09 at 6:33
1  
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
10  
Maybe the die function call was created to make Perl programmers feel at home. – pavium Nov 25 '09 at 6:56
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
5  
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
feedback

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

link|improve this answer
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:

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

Which is the same as:

<?php
die("I am going to die");
?>
link|improve this answer
5  
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
feedback

Your Answer

 
or
required, but never shown

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