PHP mysqli_init() 函数



定义和用法

mysqli_init() 函数用于初始化一个 mysqli 对象。此函数的结果可以作为 mysqli_real_connect() 函数的参数之一。

语法

mysqli_init($con);

参数

序号 参数 & 描述
1

con(必填)

这是一个代表与 MySQL 服务器连接的对象。

返回值

此函数返回一个 mysqli 对象。

PHP 版本

此函数首次在 PHP 5 版本中引入,并在所有后续版本中均有效。

示例

以下示例演示了 mysqli_init() 函数(过程式风格)的用法:

<?php
   $db = mysqli_init();
   print_r($db);
?>

这将产生以下结果:

mysqli Object
(
    [client_info] => mysqlnd 7.4.5
    [client_version] => 70405
    [connect_errno] => 0
    [connect_error] =>
    [errno] => 0
    [error] =>
)

示例

以下是此函数的另一个示例:

<?php
   $db = mysqli_init();
   //Creating the connection
   $con = mysqli_real_connect($db, "localhost","root","password","test");
   if($con){
      print("Connection Established Successfully");
   }else{
      print("Connection Failed ");
   }
?>

这将产生以下结果:

Connection Established Successfully

示例

<?php
   $connection_mysql = mysqli_init();
   
   if (!$connection_mysql){
      die("mysqli_init failed");
   }
   
   if (!mysqli_real_connect($connection_mysql,"localhost","root","password","mydb")){
      die("Connect Error: " . mysqli_connect_error());
   }
   mysqli_close($connection_mysql);
   print("Connection established successfully.....");
?>

这将产生以下结果:

Connection established successfully.....
php_function_reference.htm
广告