update page now
Laravel Live Japan

mysqli::init

mysqli_init

(PHP 5, PHP 7, PHP 8)

mysqli::init -- mysqli_initInicializa MySQLi y devuelve un objeto para usar con mysqli_real_connect()

Descripción

Estilo orientado a objetos

#[\Deprecated]
public mysqli::init(): ?bool

Estilo procedimental

mysqli_init(): mysqli|false

Asigna o inicializa un objeto MySQL utilizable para las funciones mysqli_options() y mysqli_real_connect().

Nota:

Todas las llamadas siguientes a cualquier función MySQLi (excepto mysqli_options() y mysqli_ssl_set()) fallarán hasta que la función mysqli_real_connect() sea llamada.

Parámetros

Esta función no contiene ningún parámetro.

Valores devueltos

mysqli::init() devuelve null en caso de éxito, o false si ocurre un error. mysqli_init() devuelve un objeto en caso de éxito, o false si ocurre un error.

Historial de cambios

Versión Descripción
8.1.0 El método mysqli::init() de estilo orientado a objetos ha sido deprecado. Reemplace las llamadas a parent::init() por parent::__construct().

Ejemplos

Ver mysqli_real_connect().

Ver también

add a note

User Contributed Notes 2 notes

up
2
Kam.Dab
2 years ago
I wrote support ssl mysqli you don't need change anymore mysqli connect exchange to your own mysqli . Overwrite __construct mysqli with support ssl can be like that: 
<?php class myssl_mysqli extends \mysqli {
        public function __construct($db_host, $db_user, $db_pass, $db_name, $port, $persistent = true, $ssl = false, $certpublic = "") {
            if($ssl) {
        parent::init();
                parent::options(MYSQLI_OPT_SSL_VERIFY_SERVER_CERT, false);
        parent::ssl_set(NULL, NULL, $certpublic, NULL, NULL);
            parent::real_connect(($persistent ? 'p:' : '') . $db_host, $db_user, $db_pass, $db_name, $port, '', MYSQLI_CLIENT_SSL | MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT );
            } else {
                 parent::__construct($db_host, $db_user, $db_pass, $db_name, $port);
            }
}
$db = new myssl_mysqli('localhost','user', 'pass','db', '3306', true, true, '/home/mypublicowncert.pem'); 
?>
in this example i off the verificate cert by authority ssl, due it own cery created
up
-3
evgen at sysmasters dot net
3 years ago
Correct way to connect db 

<?php

mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$mysqli = new mysqli("127.0.0.1", "db_user", "db_pass", "db_name",3306);

$result = $mysqli->query("SELECT somefield1, somefield2 FROM sometable ORDER BY ID LIMIT 3");

/* Close the connection as soon as it becomes unnecessary */
$mysqli->close();

foreach ($result as $row) {
    /* Processing data received from the database */
echo var_dump ($row);
}
To Top