mysqli::init

mysqli_init

(PHP 5, PHP 7)

mysqli::init -- mysqli_initInitializes MySQLi and returns a resource for use with mysqli_real_connect()

Beschreibung

Objektorientierter Stil

mysqli::init ( void ) : mysqli

Prozeduraler Stil

mysqli_init ( void ) : mysqli

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

Hinweis:

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

Rückgabewerte

Returns an object.

Beispiele

See mysqli_real_connect().

Siehe auch