PHP mysqli_stmt_init() 函数



定义和用法

mysqli_stmt_init() 函数用于初始化一个语句对象。此函数的结果可以作为 mysqli_stmt_prepare() 函数的参数之一。

语法

mysqli_stmt_init($con);

参数

序号 参数及说明
1

con(必填)

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

返回值

此函数返回一个语句对象。

PHP 版本

此函数首次出现在 PHP 5 版本中,并在所有后续版本中均可使用。

示例

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

<?php
   //Creating the connection
   $con = mysqli_connect("localhost", "root", "password", "mydb");

   $query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)"; 
   mysqli_query($con, $query);

   //initiating the statement
   $stmt =  mysqli_stmt_init($con);

   $res = mysqli_stmt_prepare($stmt, "INSERT INTO Test values(?, ?)");
   mysqli_stmt_bind_param($stmt, "si", $Name, $Age);
   $Name = 'Raju';
   $Age = 25;
   print("Record Inserted.....");

   //Executing the statement
   mysqli_stmt_execute($stmt);

   //Closing the statement
   mysqli_stmt_close($stmt);

   //Closing the connection
   mysqli_close($con);
?>

这将产生以下结果 −

Record Inserted.....

示例

以下是此函数的另一个示例 $minus;

<?php
   //Creating the connection
   $con = new mysqli("localhost", "root", "password", "mydb");

   $query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)"; 
   $con->query($query);

   //initiating the statement
   $stmt =  $con->stmt_init();

   $res = $stmt->prepare("INSERT INTO Test values(?, ?)");
   $stmt->bind_param("si", $Name, $Age);
   $Name = 'Raju';
   $Age = 25;
   print("Record Inserted.....");

   //Executing the statement
   $stmt->execute();

   //Closing the statement
   $stmt->close();

   //Closing the connection
   $con->close();
?>

这将产生以下结果 −

Record Inserted.....
php_function_reference.htm
广告