void die (int/string $status)
die() outputs a message and terminates the current script
※ available F/W version : all
No value is returned.
<?php
die("This script will be terminated.\r\n");
while(1);
?>
This function is identical to the PHP group’s die() function except when the $status is an integer.