exit(); // Normal exit
exit(1); // Exit with an error code
exit('Error!'); // Exit and print an error message
exit;
//exit — Output a message and terminate the current script
<?php
$filename = '/path/to/data-file';
$file = fopen($filename, 'r')
or exit("unable to open file ($filename)");
?>
if( !file_exists("") ) {
exit("File not found on line 145: customers.txt. Hope you weren't buying anything ...");
} else {
$file = fopen("customers.txt, "r");
// rest of code here