Jun 25, 2007 #1 Naoise Programmer Dec 23, 2004 318 IE Objects that I have created from classes, do they need to be destroyed (how is this done??) or is garbage collection an issue in PHP?
Objects that I have created from classes, do they need to be destroyed (how is this done??) or is garbage collection an issue in PHP?
Jun 25, 2007 #2 jpadie Technical User Nov 24, 2003 10,094 FR memory taken by objects will be freed once the script terminates. you can always manually do the same by unset() or assigning the object to NULL. Upvote 0 Downvote
memory taken by objects will be freed once the script terminates. you can always manually do the same by unset() or assigning the object to NULL.