CakeFest 2024: The Official CakePHP Conference

The mysqli_driver class

(PHP 5, PHP 7, PHP 8)

Giriş

The mysqli_driver class is an instance of the monostate pattern, i.e. there is only one driver which can be accessed though an arbitrary amount of mysqli_driver instances.

Sınıf Sözdizimi

final class mysqli_driver {
/* Özellikler */
public readonly string $client_info;
public readonly int $client_version;
public readonly int $driver_version;
}

Özellikler

client_info

The Client API header version

client_version

The Client version

driver_version

The MySQLi Driver version

Uyarı

This property has been deprecated as of PHP 8.1.0. Relying on this property is highly discouraged.

embedded

Whether MySQLi Embedded support is enabled

Uyarı

This property has been removed as of PHP 8.0.0.

reconnect

Allow or prevent reconnect (see the mysqli.reconnect INI directive)

Uyarı

This property has been removed along with the mysqli.reconnect INI directive as of PHP 8.2.0.

report_mode

Set to MYSQLI_REPORT_OFF, MYSQLI_REPORT_ALL or any combination of MYSQLI_REPORT_STRICT (throw Exceptions for errors), MYSQLI_REPORT_ERROR (report errors) and MYSQLI_REPORT_INDEX (errors regarding indexes). See also mysqli_report().

Sürüm Bilgisi

Sürüm: Açıklama
8.2.0 mysqli_driver::$reconnect was removed.
8.1.0 mysqli_driver::$driver_version has been deprecated.
8.0.0 mysqli_driver::$embedded was removed.
7.4.0 mysqli_driver::embedded_server_start() and mysqli_driver:embedded_server_end() were removed.

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top