(PECL uopz 5, PECL uopz , PECL uopz 7)
uopz_get_exit_status — 检索最后设置的退出状态
检索最后设置的退出状态,即传递给 exit() 的值。
此函数没有参数。
此函数返回最后一个退出状态,如果 exit() 未被调用,则返回 null。
null
示例 #1 uopz_get_exit_status() 示例
<?phpexit(123); echo uopz_get_exit_status();?>
以上示例将输出
123
OPcache 在无条件退出后会优化掉死代码。