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
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
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