in PHP Does die() gives anything in return when we use it?
|
|
In PHP the function die() just quit running the script and prints out the argument (if there's any). |
|||||
|
|
Why don't you have a look at the wonderful documentation of PHP? It even contains information about die() |
|||||||||||
|
|
Obviously,
However, depending on what you pass as the (optional) argument of Observe:
This code would print Another example:
When you pass an integer value instead of a string, nothing is printed and the exit status code will be Lastly, The exit status of a process can be changed to signal different kinds of errors that may have occurred, e.g. |
|||
|
|
|
There's no reason to return something in die/exit. This function terminates php interpreter process inside and returns exit-code to shell. So after calling die() there is no script execution as far as there is no interpreter process which executes the script and that's why there is no way to handle function's return. |
|||
|
|
|
It is the same as exit() and according to documentation it returns nothing |
||||
|
|