Is mysql_close necessary because HTTP is a stateless protocol?
Source: Internet
Author: User
Since HTTP is a stateless protocol, is mysql_close necessary? Since the connection is checked once, why do we need to close the connection? There is also an imagedestroy function to release the memory for uploading images. if I do not release the image, will the machine memory remain silly and occupy the image until it crashes ?, Since HTTP is a stateless protocol, is mysql_close necessary?
Since the connection is checked once, why do we need to close the connection?
There is also an imagedestroy function to release the memory for uploading images. if I do not release the image, will the machine memory remain silly and occupy the image until it crashes?
------ Solution --------------------
The connection between your website visitor (his computer or mobile phone) and your web server (such as apache) is http,
Mysql_connect establishes a connection between your web server and your mysql server (even if they are on a machine)
If you forget to close the database connection, the connection will be retained until you close the connection or the php running of the request is completed...
If you do not have imagedestroy, the memory will be occupied until you destroy or the operation ends. (I am not sure if it will be reclaimed, if the number of resources referenced in the image is 0)
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.