This is what the PHP Documentation has to say on Connection Pooling:
The mysqli extension supports persistent database connections, which are a special kind of pooled connections.
and
Every PHP process is using its own Mysqli connection pool.
But do child processes (after a fork()) share the same connection pool?
Therefore, is a permanent database connection avoiding that one child closes another child's connection?