Uopz 函数
PHP Manual

uopz_get_exit_status

(PECL uopz 5)

uopz_get_exit_statusRetrieve the last set exit status

说明

mixed uopz_get_exit_status ( void )

Retrieves the last set exit status, i.e. the value passed to exit().

参数

此函数没有参数。

返回值

This function returns the last exit status, or NULL if exit() has not been called.

范例

Example #1 uopz_get_exit_status() example

<?php
exit(123); 
echo 
uopz_get_exit_status();?>

以上例程会输出:

123

注释

Caution

OPcache optimizes away dead code after unconditional exit.

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

Warning

此函数(还)不能安全地适用于二进制对象!

Note: register_globals 重要说明:

自 PHP 4.2.0 起,PHP 指令 register_globals 的默认值为 off。PHP 社区鼓励开发者不要依赖于此指令, 用其他手段替代,例如superglobals

参见


Uopz 函数
PHP Manual