(PECL uopz 5)
uopz_get_exit_status — Retrieve the last set exit status
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
OPcache optimizes away dead code after unconditional exit.
Note: 因为是一个语言构造器而不是一个函数,不能被 可变函数 调用。
此函数(还)不能安全地适用于二进制对象!
Note: register_globals 重要说明:
自 PHP 4.2.0 起,PHP 指令 register_globals 的默认值为 off。PHP 社区鼓励开发者不要依赖于此指令, 用其他手段替代,例如superglobals。