bilis_money Posted June 28, 2006 Share Posted June 28, 2006 hi, php people.I'm just curious to know with the imagedestroy() function.Why is it after we made the image using imagecreate() function.we need to destroy it again? Is this because it occupy memories on our computer?and to free it from wasting the memory we need to destroy the image again?Is this only the reason? or there are another reasons?Thanks in advance for your comments and opinions... :) Link to comment https://forums.phpfreaks.com/topic/13065-imagedestroy-question/ Share on other sites More sharing options...
adamwhiles Posted June 28, 2006 Share Posted June 28, 2006 From what I have read about the topic, you must use imagedestroy() or it can eat up all the memory your host allows very quickly. And that calling the image variable a second time does not clear the old data out of memory it just stays there. So you must use imagedestroy() for that reason or you will meet the max memory limit your host has set in the php.ini.You can read more about this here: [a href=\"http://www.php.net/imagedestroy\" target=\"_blank\"]http://www.php.net/imagedestroy[/a] Link to comment https://forums.phpfreaks.com/topic/13065-imagedestroy-question/#findComment-50298 Share on other sites More sharing options...
bilis_money Posted June 28, 2006 Author Share Posted June 28, 2006 thank you! adamwhiles. that's a good advice.now everything is clear to me. Link to comment https://forums.phpfreaks.com/topic/13065-imagedestroy-question/#findComment-50305 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.