mysqli::init

mysqli_init

(PHP 5, PHP 7, PHP 8)

mysqli::init -- mysqli_initInitializes MySQLi and returns an object for use with mysqli_real_connect()

Açıklama

Nesne yönelimli kullanım

publicmysqli::init(): ?bool

Yordamsal kullanım

mysqli_init(): mysqli|false

Allocates or initializes a MYSQL object suitable for mysqli_options() and mysqli_real_connect().

Bilginize:

Any subsequent calls to any mysqli function (except mysqli_options() and mysqli_ssl_set()) will fail until mysqli_real_connect() was called.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

mysqli::init() returns null on success, başarısızlık durumunda false döner. mysqli_init() returns an object on success, başarısızlık durumunda false döner.

Sürüm Bilgisi

Sürüm: Açıklama
8.1.0 The object-oriented style mysqli::init() method has been deprecated. Replace calls to parent::init() with parent::__construct().

Örnekler

See mysqli_real_connect().

Ayrıca Bakınız

To Top