MemphiS Posted June 15, 2007 Share Posted June 15, 2007 Just wondering with unset(); Any real point for using unset(); unless for closing sessions. eg: unset($var); Will this take a load off the server? make speed better? jut wondering With mysql_close(); Should i always use this to close the connection? Thanks for your responces Link to comment https://forums.phpfreaks.com/topic/55668-solved-unset-and-mysql_close/ Share on other sites More sharing options...
btherl Posted June 15, 2007 Share Posted June 15, 2007 unset() will free memory associated with a variable. It's only useful if you want to re-use that memory in the same request. The memory will be freed when the script finishes anyway. As for mysql_close(), again it's closed at the end of the request. You only need to close it if you have a reason to close it before the request is finished. Link to comment https://forums.phpfreaks.com/topic/55668-solved-unset-and-mysql_close/#findComment-275070 Share on other sites More sharing options...
MemphiS Posted June 15, 2007 Author Share Posted June 15, 2007 ahh thanks btherl makes sense Link to comment https://forums.phpfreaks.com/topic/55668-solved-unset-and-mysql_close/#findComment-275072 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.