Logo

die()

ops...
Thanks to: No one :(

Description

Alias of exit(), which ends the program prematurely. However, Shutdown Functions and Object Destructors are still executed, which means that, for example, an html file will still print out all the code that was executed before the die call.

Usage: die(); CC<!-- Home.php --!>CC <p>Hello</p> <?php die() ?> <p>World</p> CC// Output in browserCC Hello