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