diff options
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/main/main.c b/main/main.c index 2443eac1dc..ef619a76fa 100644 --- a/main/main.c +++ b/main/main.c @@ -1596,6 +1596,10 @@ int php_request_startup(void) { int retval = SUCCESS; +#if ZEND_RC_DEBUG + zend_rc_debug = 1; +#endif + zend_interned_strings_activate(); #ifdef HAVE_DTRACE @@ -1805,6 +1809,10 @@ void php_request_shutdown(void *dummy) #ifdef HAVE_DTRACE DTRACE_REQUEST_SHUTDOWN(SAFE_FILENAME(SG(request_info).path_translated), SAFE_FILENAME(SG(request_info).request_uri), (char *)SAFE_FILENAME(SG(request_info).request_method)); #endif /* HAVE_DTRACE */ + +#if ZEND_RC_DEBUG + zend_rc_debug = 0; +#endif } /* }}} */ |