PHP and MySQLi close()

前端 未结 2 775
心在旅途
心在旅途 2021-01-31 08:56

I am new to MySQL and PHP and am attempting to make my own CMS to help make managing my websites easier. Can someone explain mysqli\'s close() function?

    <
2条回答
  •  情深已故
    2021-01-31 09:17

    You need to close the Mysql session when you manual set variables @@session or non-defined (set to @@session).
    for example

     $mysqli->query("SET @uuid=UUID()");
    

    https://dev.mysql.com/doc/refman/5.1/en/set-statement.html

提交回复
热议问题