Unix and Linux Discussions Tagged with exit |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
10,100 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
21,626 |
Shell Programming and Scripting |
|
|
|
3 |
2,563 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
17,528 |
Homework & Coursework Questions |
|
|
|
3 |
8,834 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,415 |
Shell Programming and Scripting |
|
|
|
2 |
2,991 |
Shell Programming and Scripting |
|
|
|
17 |
16,235 |
Shell Programming and Scripting |
|
|
|
12 |
9,465 |
Shell Programming and Scripting |
|
|
|
2 |
1,137 |
Shell Programming and Scripting |
|
|
|
5 |
8,227 |
Homework & Coursework Questions |
|
|
|
8 |
5,953 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,228 |
Shell Programming and Scripting |
|
|
|
3 |
24,151 |
Shell Programming and Scripting |
|
|
|
4 |
5,621 |
Shell Programming and Scripting |
|
|
|
2 |
3,537 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
6,874 |
Solaris |
|
|
|
1 |
2,559 |
Shell Programming and Scripting |
|
|
|
7 |
4,394 |
Shell Programming and Scripting |
|
|
|
3 |
2,582 |
Shell Programming and Scripting |
|
|
|
3 |
20,676 |
Shell Programming and Scripting |
|
|
|
7 |
22,985 |
Shell Programming and Scripting |
|
|
|
7 |
27,748 |
Shell Programming and Scripting |
|
|
|
9 |
33,812 |
Programming |
|
|
|
2 |
10,092 |
Shell Programming and Scripting |
|
|
|
1 |
3,773 |
Programming |
|
|
|
2 |
2,800 |
Shell Programming and Scripting |
|
|
|
1 |
10,410 |
Shell Programming and Scripting |
|
|
|
3 |
7,462 |
Shell Programming and Scripting |
|
|
|
1 |
3,439 |
Shell Programming and Scripting |
|
|
|
3 |
14,487 |
Programming |
|
|
|
1 |
3,579 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,787 |
Shell Programming and Scripting |
|
|
|
0 |
4,812 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,424 |
Shell Programming and Scripting |
|
|
|
2 |
2,246 |
Shell Programming and Scripting |
|
|
|
4 |
8,983 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,582 |
Solaris BigAdmin RSS |
|
|
|
5 |
4,586 |
Programming |
|
|
|
9 |
11,433 |
Shell Programming and Scripting |
EXIT(3) 1 EXIT(3)
exit - Output a message and terminate the current script
SYNOPSIS
void exit ([string $status])
DESCRIPTION
void exit (int $status)
Terminates execution of the script. Shutdown functions and object destructors will always be executed even if exit is called.
exit is a language construct and it can be called without parentheses if no $status is passed.
PARAMETERS
o $status
- If $status is a string, this function prints the $status just before exiting. If $status is an integer, that value will be used
as the exit status and not printed. Exit statuses should be in the range 0 to 254, the exit status 255 is reserved by PHP and
shall not be used. The status 0 is used to terminate the program successfully.
Note
PHP >= 4.2.0 does NOT print the $status if it is an integer.
RETURN VALUES
No value is returned.
EXAMPLES
Example #1
exit example
<?php
$filename = '/path/to/data-file';
$file = fopen($filename, 'r')
or exit("unable to open file ($filename)");
?>
Example #2
exit status example
<?php
//exit program normally
exit;
exit();
exit(0);
//exit with an error code
exit(1);
exit(0376); //octal
?>
Example #3
Shutdown functions and destructors run regardless
<?php
class Foo
{
public function __destruct()
{
echo 'Destruct: ' . __METHOD__ . '()' . PHP_EOL;
}
}
function shutdown()
{
echo 'Shutdown: ' . __FUNCTION__ . '()' . PHP_EOL;
}
$foo = new Foo();
register_shutdown_function('shutdown');
exit();
echo 'This will not be output.';
?>
The above example will output:
Shutdown: shutdown()
Destruct: Foo::__destruct()
NOTES
Note
Because this is a language construct and not a function, it cannot be called using variable functions.
Note
This language construct is equivalent to die(3).
SEE ALSO
register_shutdown_function(3).
PHP Documentation Group EXIT(3)