Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在扩展中,如何避免我自己分配zval字符串时php引擎崩溃?
.. // will do implicitly ZVAL_STRING("tmp", "/tmp", 0); // SET_VAR_STRING("tmp", "/tmp"); .. php_embed_shutdown(TSRMLS_C); // GPF !!
有任何想法吗?
将其更改为:
SET_VAR_STRING("tmp", estrdup("/tmp"));