I assume you mean keeping the connection open across multiple calls to the server. Within the same script, you should only have to open the connection once.
The mysqli documentation shows how to enable persistent connections.
However, you should benchmark your code to ensure that connecting to the database is really a performance-limiting factor. You can probably find bigger returns by examining the interplay between your application, the queries, and the schema.
With the older mysql_pconnect function, you could run in to issues where old users of a connection left things in a non-clean state:
The problem with persistent connections is that they can be left in
unpredictable states by clients. For example, a table lock might be
activated before a client terminates unexpectedly. A new client
process reusing this persistent connection will get the connection "as
is". Any cleanup would need to be done by the new client process
before it could make good use of the persistent connection, increasing
the burden on the programmer.
The mysqli logic does a whole bunch of cleanup for you so that this isn't an issue.
From the documentation, the cleanup includes:
- Rollback active transactions
- Close and drop temporary tables
- Unlock tables
- Reset session variables
- Close prepared statements (always happens with PHP)
- Close handler
- Release locks acquired with GET_LOCK()