在源码/扩展中调用同 exit 相同功能
zval *ptr;
if(Z_TYPE_P(ptr) == IS_LONG) { EG(exit_status) = Z_LVAL_P(ptr);} else { zend_print_variable(ptr);}zend_bailout();本文共 196 字,大约阅读时间需要 1 分钟。
在源码/扩展中调用同 exit 相同功能
zval *ptr;
if(Z_TYPE_P(ptr) == IS_LONG) { EG(exit_status) = Z_LVAL_P(ptr);} else { zend_print_variable(ptr);}zend_bailout();转载于:https://www.cnblogs.com/huye/p/3854060.html