diff options
author | Stanislav Malyshev <stas@php.net> | 2011-01-16 20:39:22 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2011-01-16 20:39:22 +0000 |
commit | b4dba12d34072900027fd9f87d48c0044470daf1 (patch) | |
tree | d90013e6d613c1c7df6ac974563a0773af43ffaf /Zend/zend_constants.c | |
parent | 2d9325ec2ce98f3b512c8159d3b20273db3334f9 (diff) | |
download | php-git-b4dba12d34072900027fd9f87d48c0044470daf1.tar.gz |
Add options to debug_backtrace functions
Diffstat (limited to 'Zend/zend_constants.c')
-rw-r--r-- | Zend/zend_constants.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_constants.c b/Zend/zend_constants.c index 4005558526..2a42083a83 100644 --- a/Zend/zend_constants.c +++ b/Zend/zend_constants.c @@ -115,6 +115,8 @@ void zend_register_standard_constants(TSRMLS_D) REGISTER_MAIN_LONG_CONSTANT("E_ALL", E_ALL, CONST_PERSISTENT | CONST_CS); + REGISTER_MAIN_LONG_CONSTANT("DEBUG_BACKTRACE_PROVIDE_OBJECT", DEBUG_BACKTRACE_PROVIDE_OBJECT, CONST_PERSISTENT | CONST_CS); + REGISTER_MAIN_LONG_CONSTANT("DEBUG_BACKTRACE_IGNORE_ARGS", DEBUG_BACKTRACE_IGNORE_ARGS, CONST_PERSISTENT | CONST_CS); /* true/false constants */ { zend_constant c; |