Is it a must to close the connection in PHP script?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on the configuration of your DB server, there is a limit on the possible number of connections opened to it at the same time.
So, if your script :
It can be interesting to close the connection after having done all your queries — and to only open the connection when it’s becoming needed.
Still, note that connections are closed when the script ends, anyway ; which means that if you don’t have a wya to be sure that you have finished doing queries, you don’t need to close the connection : keeping it opened allows you to do some additionnal queries whenever it’s necessary.
(This is particularly true is your pages are built using several distinct and independant components, that are all susceptible to do DB queries)
For the applications I write, I generally :