杂项 函数
在线手册:中文  英文

exit

(PHP 4, PHP 5)

exit输出一个消息并且退出当前脚本

说明

void exit ([ string $status ] )
void exit ( int $status )

中止脚本的执行。 尽管调用了 exit()Shutdown函数 以及 object destructors 总是会被执行。

参数

status

如果 status 是一个字符串,在退出之前该函数会打印 status

如果 status 是一个 integer,该值会作为退出状态码,并且不会被打印输出。 退出状态码应该在范围0至254,不应使用被PHP保留的退出状态码255。 状态码0用于成功中止程序。

Note: PHP >= 4.2.0 当 status 是一个 integer,不会打印输出。

返回值

没有返回值。

范例

Example #1 exit() 例子

<?php

$filename 
'/path/to/data-file';
$file fopen($filename'r')
    or exit(
"unable to open file ($filename)");

?>

Example #2 exit() 状态码例子

<?php

//exit program normally
exit;
exit();
exit(
0);

//exit with an error code
exit(1);
exit(
0376); //octal

?>

Example #3 无论如何,Shutdown函数与析构函数都会被执行

<?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.';
?>

以上例程会输出:

 Shutdown: shutdown()
 Destruct: Foo::__destruct()
 

注释

Note: 因为是一个语言构造器而不是一个函数,不能被 可变函数 调用。

Note:

该语法结构等同于 die()

参见


杂项 函数
在线手册:中文  英文

用户评论:

Jorge Castro (2013-02-09 11:19:45)

Another way to avoid exit is to add a conditional branch (i.e. an if).

<?php
    $task
=someoperation();
    if (!
$task) {
        
// for example, the task failed so we exit asap.
        
exit();
    }
    
//... rest of the code...
?>

is analog to :

<?php
    $task
=someoperation();
    if (!
$task) {
        
// the task failed, so we do nothing and "jump" to the end of the code
        //... rest of the code...
    
}
?>

Most of the case, to use exit is cleaner than to add a big branch.

tomas dot burba at softneta dot lt (2012-08-30 17:22:25)

The code 255 mentioned in this page without explaining its meaning apparently indicates a fatal error from executing a CLI script - for example, a syntax error. After ensuring visible stderr/stdout, adjusting error_reporting, display_errors and related settings, you'll see the actual message.

alexyam at live dot com (2012-04-09 16:19:10)

When using php-fpm, fastcgi_finish_request() should be used instead of register_shutdown_function() and exit()

For example, under nginx and php-fpm 5.3+, this will make browsers wait 10 seconds to show output:

<?php
    
echo "You have to wait 10 seconds to see this.<br>";
    
register_shutdown_function('shutdown');
    exit;
    function 
shutdown(){
        
sleep(10);
        echo 
"Because exit() doesn't terminate php-fpm calls immediately.<br>";
    }
?>

This doesn't:

<?php
    
echo "You can see this from the browser immediately.<br>";
    
fastcgi_finish_request();
    
sleep(10);
    echo 
"You can't see this form the browser.";
?>

nicoladinh at gmail dot com (2010-12-02 00:09:08)

Calling to exit() will flush all buffers started by ob_start() to default output.

dexen dot devries at gmail dot com (2010-11-03 05:54:16)

If you want to avoid calling exit() in FastCGI as per the comments below, but really, positively want to exit cleanly from nested function call or include, consider doing it the Python way:

define an exception named `SystemExit', throw it instead of calling exit() and catch it in index.php with an empty handler to finish script execution cleanly.

<?php

// file: index.php
class SystemExit extends Exception {}
try {
   
/* code code */
}
catch (
SystemExit $e) { /* do nothing */ }
// end of file: index.php

// some deeply nested function or .php file    

if (SOME_EXIT_CONDITION)
   throw new 
SystemExit(); // instead of exit()

?>

vincent dot laag at gmail dot com (2010-09-24 12:51:31)

Don't use the exit() function in the auto prepend file with fastcgi (linux/bsd os).
It has the effect of leaving opened files with for result at least a nice "Too many open files ..." error.

matt at serverboy dot net (2010-03-23 12:11:57)

It should be noted that if building a site that runs on FastCGI, calling exit will generate an error in the server's log file. This can quickly fill up.

Also, using exit will diminish the performance benefit gained on FastCGI setups. Instead, consider using code like this:

<?php

if( /* error case */ )
    echo 
"Invalid request";
else {
    
/* The rest of your application */
}
?>

I've also seen developers get around this issue with FastCGI by wrapping their code in a switch statement and using breaks:

index.php:
<?php

switch(true) {
    case 
true:
        require(
'application.php');
}

?>

application.php:
<?php

if($x $y) {
    echo 
"Sorry, that didn't work.";
    break;
}

// ...

?>

It does carry some overhead, but compared to the alternative, it does the job well.

albert at removethis dot peschar dot net (2009-05-05 11:50:27)

jbezorg at gmail proposed the following:

<?php

if($_SERVER['SCRIPT_FILENAME'] == __FILE__ )
  
header('Location: /');

?>

After sending the `Location:' header PHP _will_ continue parsing, and all code below the header() call will still be executed.  So instead use:

<?php

if($_SERVER['SCRIPT_FILENAME'] == __FILE__)
{
  
header('Location: /');
  exit;
}

?>

jbezNULLorg at gmNULLail dot com (2009-02-24 12:26:57)

If you are retroactively going through included files to prevent them from being accessed, you can use the following.

<?php
if($_SERVER['SCRIPT_FILENAME'] == __FILE__ )
    
header('location: /'); // or exit();

// rest of code

?>

void a t informance d o t info (2008-10-26 14:11:00)

To rich dot lovely at klikzltd dot co dot uk:

Using a "@" before header() to suppress its error, and relying on the "headers already sent" error seems to me a very bad idea while building any serious website.

This is *not* a clean way to prevent a file from being called directly. At least this is not a secure method, as you rely on the presence of an exception sent by the parser at runtime.

I recommend using a more common way as defining a constant or assigning a variable with any value, and checking for its presence in the included script, like:

in index.php:
<?php
define 
('INDEX'true);
?>

in your included file:
<?php
if (!defined('INDEX')) {
   die(
'You cannot call this script directly !');
}
?>

BR.

Ninj

rich dot lovely at klikzltd dot co dot uk (2008-07-19 06:24:41)

usefull feature:

@header("location: path/to/home/page") and exit();

EG:

We have a "modular" website, with common header and footer files, and different content modules, eg photos, usually accessed via index.php?p=photos

index.php:
<?php include "head.php";
include 
$_GET['p'] . ".php";  //Change this - SECURITY!
include "foot.php";
?>

photos.php:
<?php
@header("location: index.php?p=photos") and exit();

//Code to display photos etc
?>

If someone tries to access photos.php, which doesn't produce a full html page by definition, the header directive sends them to the full version, returns true, and therefore runs the exit() function.

If they go in normally, the header function should die with the "headers already sent" error, which is supressed by the @ and returns false, preventing the exit statement from running due to lazy execution.

dan (2007-07-11 15:11:51)

In relation to the below comment, you may find that using the following may be more appropriate:

<?php
# ... user has pressed log out, cookies have been wiped, etc.

// Stay on the same page at time of logout (useful if a page is also available to anyone who isn't logged in
header ("Location: http://" $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);

?>

Of course $_SERVER['PHP_SELF'] can be omitted if you wish to redirect to the root directory of the site (http://www.example.com) or a path of your choosing can be used instead.

Alternatively, if you've a solid system implemented and logged out users can access the page too, you can continue with showing the page without using exit() or header().

Roumen Semov (2006-02-16 11:54:34)

Please note in PHP "exit(0)" or simply "exit" returns true.
Any other value but zero will return false. This is good to know in case you are writing command-line php scripts where you need the result of the php script to determine if the next script will run. Example:
shell> ./my_php_script && echo "It ran successfully!"
If you know my_php_script can break somewhere you could do a conditional with an "exit(-1)" and then if the script breaks the command after the && will not execute.

nospam at mydomain dot com (2004-09-27 02:12:59)

Using return instead of exit is to prefer when you want the script that you have included inside another script to die but continue to execute the main script.
// Radcliff

emils at tvnet dot lv (2003-08-23 08:14:28)

Note, that using exit() will explicitly cause Roxen webserver to die, if PHP is used as Roxen SAPI module. There is no known workaround for that, except not to use exit(). CGI versions of PHP are not affected.

mbostrom at paragee dot com (2003-02-26 12:45:49)

In PHP 4.3.1 (and possibly 4.3.0), running scripts from the command line works a lot better. This is probably because 4.3.x has a whole new CLI mode.
Specifically, exit status is now returned (to the shell) as you would expect. This is a godsend for writing embedded email processing scripts, as much email infrastructure (fetchmail, qmail, mutt, etc.) is dependant upon correctly returned status codes, and the inability to return a status code (as in PHP 4.2.x) is an insurmountable obstacle.
$_SERVER["argv"] is also always available in 4.3.x, I think, whereas in 4.2.x php.ini could prevent it from being available.
(On the downside, I had to ./configure --without-mysql in order to get 4.3.1 to compile on RedHat 8.0. Otherwise there was what looked like a fatal compile warning (that I might also have been able to ignore somehow).
The "fatal warning" FYI:
ext/mysql/libmysql/my_tempnam.o: In function `my_tempnam':
ext/mysql/libmysql/my_tempnam.c:103: the use of `tempnam' is dangerous, better use `mkstemp'
Changing the code from tempnam to mkstemp would probably not be overly complicated, but it is non-trivial.)

shaun at NOshatSPAM dot net (2002-08-09 04:13:39)

return may be preferable to exit in certain situations, especially when dealing with the PHP binary and the shell.
I have a script which is the recipient of a mail alias, i.e. mail sent to that alias is piped to the script instead of being delivered to a mailbox. Using exit in this script resulted in the sender of the email getting a delivery failure notice. This was not the desired behavior, I wanted to silently discard messages which did not satisfy the script's requirements.
After several hours of trying to figure out what integer value I should pass to exit() to satisfy sendmail, I tried using return instead of exit. Worked like a charm. Sendmail didn't like exit but it was perfectly happy with return. So, if you're running into trouble with exit and other system binaries, try using return instead.

iamfast at tampabay dot rr dot com (2002-07-13 20:12:06)

If you are working with images or something of the sort that is not html, and use auto appending, call exit before you close your php tag, so that the footer is not included, corrupting the end of the file.
--Nate

devinemke at devinemke dot com (2002-01-11 00:38:15)

If you are using templates with numerous includes then exit() will end you script and your template will not complete (no </table>, </body>, </html> etc...). Rather than having complex nested conditional logic within your content, just create a "footer.php" file that closes all of your HTML and if you want to exit out of a script just include() the footer before you exit().
for example:
include ('header.php');
blah blah blah
if (!$mysql_connect) {
echo "unable to connect";
include ('footer.php');
exit;
}
blah blah blah
include ('footer.php');

易百教程