What are the differences in die() and exit() in PHP?
die(‘message’); die function will stpos the excution of the script and print the message. exit() is an alias of the die function.
die(‘message’); die function will stpos the excution of the script and print the message. exit() is an alias of the die function.