die in php is a function used to output a message and exit the current script. This function is an alias of the exit() function. The syntax of the die function is "die(status)", and its parameter status Specifies the message or status number to be written before exiting the script.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
die() function outputs a message and exits the current script.
This function is an alias of the exit() function.
Syntax
die(status)
Parameters
status Required. Specifies the message or status number to be written before exiting the script. Status numbers are not written to the output.
Description
If status is a string, the function will output the string before exiting.
If status is an integer, this value will be used as the exit status. The exit status value is between 0 and 254. Exit status 255 is reserved by PHP and will not be used. Status 0 is used to terminate the program successfully.
Tips and Notes
Note: If the version number of PHP is greater than or equal to 4.2.0, then when status is an integer, this parameter will not be output.
Example
<?php $site = "http://www.w3school.com.cn/"; fopen($site,"r") or die("Unable to connect to $site"); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What does die mean in php. For more information, please follow other related articles on the PHP Chinese website!