PHP脚本可以在exit()之前执行公共代码吗?

前端之家收集整理的这篇文章主要介绍了PHP脚本可以在exit()之前执行公共代码吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 PHP脚本中完成以下内容
code{
      $result1 = task1() or break;
      $result2 = task2() or break;
 }

 common_code();
 exit();
PHP帮助doco中,您可以指定在exit()之后但在脚本结束之前调用函数.

请随时查看doco了解更多信息http://us3.php.net/manual/en/function.register-shutdown-function.php

<?PHP
function shutdown()
{
    // This is our shutdown function,in 
    // here we can do any last operations
    // before the script is complete.

    echo 'Script executed with success',PHP_EOL;
}

register_shutdown_function('shutdown');
?>
原文链接:https://www.f2er.com/php/133633.html

猜你在找的PHP相关文章