我在 Linux 上运行 PHP 5.4.0。
这是 ZEND_MINIT_FUNCTION 中的代码
#ifdef ZTS
ts_allocate_id( &sample_globals_id,
sizeof(zend_sample_globals),
(ts_allocate_ctor) php_sample_init_globals,
(ts_allocate_dtor) php_sample_destroy_globals);
#else
php_sample_init_globals(& sample_globals TSRMLS_CC);
#endif
当模块完成其 MSHUTDOWN 时,此代码崩溃。GDB 指向 TSRM.c ,这一行(对 dtor 的调用):
if (p->storage[j]) {
if (resource_types_table && !resource_types_table[j].done && resource_types_table[j].dtor) {
resource_types_table[j].dtor(p->storage[j], &p->storage);
}
free(p->storage[j]);
}
更奇怪的是,当我用 NULL 替换析构函数时,它可以工作。像这样:
ts_allocate_id( &sample_globals_id,
sizeof(zend_sample_globals),
(ts_allocate_ctor) php_sample_init_globals,
NULL ); //Works, but destructor is not called
也许有人知道为什么会发生这种情况?谢谢