mysqli_stmt_bind_param()函數(shù)將變量作為參數(shù)綁定到預(yù)處理語句。
mysqli_stmt_bind_param()函數(shù)用于將變量綁定到準(zhǔn)備好的語句的參數(shù)標(biāo)記。
mysqli_stmt_bind_param($stmt, $types, $var1, $var2...);
序號 | 參數(shù)及說明 |
---|---|
1 | stmt(必需) 這是表示準(zhǔn)備好的語句的對象。 |
2 | types(必需) 一個字符串(由單個字符組成),用于指定變量的類型,其中:
|
3 | var(必需) 變量的值,以逗號分隔。 |
PHP mysqli_stmt_bind_param()函數(shù)返回一個布爾值,成功時為true,失敗時為false。
此函數(shù)最初是在PHP版本5中引入的,并且可以在所有更高版本中使用。
以下示例演示了mysqli_stmt_bind_param()函數(shù)的用法(面向過程風(fēng)格)-
<?php //建立連接 $con = new mysqli("localhost", "root", "password", "mydb"); //Creating a table $con -> query("CREATE TABLE myplayers(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))"); print("創(chuàng)建表.....\n"); //使用預(yù)處理語句將值插入到表中 $stmt = $con -> prepare( "INSERT INTO myplayers values(?, ?, ?, ?, ?)"); //將值綁定到參數(shù)標(biāo)記 $stmt -> bind_param("issss", $id, $fname, $lname, $pob, $country); $id = 1; $fname = 'Shikhar'; $lname = 'Dhawan'; $pob = 'Delhi'; $country = 'India'; //執(zhí)行語句 $stmt->execute(); //結(jié)束語句 $stmt->close(); //關(guān)閉連接 $con->close(); ?>
輸出結(jié)果
創(chuàng)建表.....
在面向?qū)ο箫L(fēng)格中,此函數(shù)的語法為$stmt-> close();。以下是面向?qū)ο箫L(fēng)格中此函數(shù)的示例;
<?php //建立連接 $con = new mysqli("localhost", "root", "password", "mydb"); //創(chuàng)建表 $con -> query("CREATE TABLE myplayers(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))"); print("創(chuàng)建表.....\n"); //使用預(yù)處理語句將值插入到表中 $stmt = $con -> prepare( "INSERT INTO myplayers values(?, ?, ?, ?, ?)"); //將值綁定到參數(shù)標(biāo)記 $stmt -> bind_param("issss", $id, $fname, $lname, $pob, $country); $id = 1; $fname = 'Shikhar'; $lname = 'Dhawan'; $pob = 'Delhi'; $country = 'India'; //執(zhí)行語句 $stmt->execute(); //結(jié)束語句 $stmt->close(); //關(guān)閉連接 $con->close(); ?>
輸出結(jié)果
創(chuàng)建表.....
以下是此函數(shù)的另一個示例-
<?php $con = @mysqli_connect("localhost", "root", "password", "mydb"); mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)"); print("創(chuàng)建表.....\n"); mysqli_query($con, "insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)"); print("插入記錄.....\n"); $stmt = mysqli_prepare($con, "DELETE FROM test where Age<?"); mysqli_stmt_bind_param($stmt, "i", $num); $num = 28; //執(zhí)行語句 mysqli_stmt_execute($stmt); //結(jié)束語句 mysqli_stmt_close($stmt); //關(guān)閉連接 mysqli_close($con); ?>
輸出結(jié)果
創(chuàng)建表.....