This class will represent the connection driver to our DBMS (MYSQL). The class mysqli_driver is an instance of the monostate pattern (monostate design pattern), meaning there is a single driver that can be accessed by an arbitrary number of mysqli_driver instances. class mysqli_driver { /* Propiedades */ public readonly string $client_info; public readonly string $client_version; […]
read more