Re: [PHP-DEV] Re: php globals delete

2002-02-13 Thread derick
On Wed, 13 Feb 2002, brad lafountain wrote: > Well how do i properly delete my global memory with without having > zts enabled You can do it in your MINIT/MSHUTDOWN functions. (or RINIT and RSHUTDOWN): http://www.php.net/manual/en/zend.structure.module-block.php http://www.php.net/manual/en/zen

Re: [PHP-DEV] Re: php globals delete

2002-02-13 Thread brad lafountain
Well how do i properly delete my global memory with without having zts enabled - Brad --- Yasuo Ohgaki <[EMAIL PROTECTED]> wrote: > Brad Lafountain wrote: > > Question.. > > > > why doens't the destructor get called on shutdown with the following > line... > > > > ZEND_INIT_MODULE_GLOBALS(soap

[PHP-DEV] Re: php globals delete

2002-02-13 Thread Yasuo Ohgaki
Brad Lafountain wrote: > Question.. > > why doens't the destructor get called on shutdown with the following line... > > ZEND_INIT_MODULE_GLOBALS(soap, php_init_globals, php_del_globals); > According to the macro definition, it does not use it unless PHP is compiled with ZTS. -- Yasuo Ohgaki