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 Quote 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. Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.