Jump to content

zval memory management


btherl

Recommended Posts

Let's say I've allocated a zval as follows

 

zval *zv;
MAKE_STD_ZVAL(zv);

 

If I want to free this zval properly, how should I do it?  Is it enough to call zval_dtor()?  FREE_ZVAL()?  I have seen some extensions that call BOTH of these.

 

Second question:  If zv is an array, do I need to do something special to ensure that the array elements are also freed?

Link to comment
https://forums.phpfreaks.com/topic/69828-zval-memory-management/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.