定义和用法
您可以创建一个准备好的语句,如果使用 mysqli_prepare() 函数的值,该语句具有参数标记 ("?")。准备好语句后,您需要使用 mysqli_stmt_bind_param() 函数将值绑定到所创建语句的参数。
您可以使用 mysqli_stmt_attr_set() 函数为更改其行为的语句设置各种属性。
用法
mysqli_stmt_attr_set($stmt, $attr, $mode);
参数
Sr.No | 参数及说明 |
---|---|
1 |
stmt(Mandatory) 这是一个表示准备好的语句的对象。 |
2 |
attr(Mandatory) 这是一个整数值,表示您要设置给给定语句的属性,它可以是以下之一 -
|
3 |
mode(Mandatory) 这是您要分配给属性的整数值。 |
返回值
PHP mysqli_stmt_attr_set() 函数返回一个布尔值,成功时为真,失败时为假。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,适用于所有后续版本。
示例
以下示例演示了 mysqli_stmt_attr_set() 函数的用法(程序风格) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
$query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)";
mysqli_query($con, $query);
print("Table Created.....\n");
//insert into Test values('Raju', 25);
$stmt = mysqli_prepare($con, "INSERT INTO Test values(?, ?)");
mysqli_stmt_bind_param($stmt, "si", $Name, $Age);
$Name = 'Raju';
$Age = 25;
print("Record Inserted.....\n");
$res = mysqli_stmt_attr_set($stmt, MYSQLI_STMT_ATTR_UPDATE_MAX_LENGTH, TRUE);
if($res){
print("Successful.....\n");
}else{
print("Failed.....\n");
}
$val = mysqli_stmt_attr_get($stmt, MYSQLI_STMT_ATTR_UPDATE_MAX_LENGTH);
print("Value:".$val);
//Executing the statement
mysqli_stmt_execute($stmt);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
这将产生以下结果 -
Table Created..... Record Inserted..... Successful..... Value:1
示例
在面向对象风格中,这个函数的语法是 $stmt->close();以下是面向对象样式 $minus 中此函数的示例;
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
$query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)";
$con -> query($query);
print("Table Created.....\n");
//insert into Test values('Raju', 25);//,('Rahman', 30),('Sarmista', 27)";
$stmt = $con -> prepare( "INSERT INTO Test values(?, ?)");
$stmt -> bind_param("si", $Name, $Age);
$Name = 'Raju';
$Age = 25;
print("Record Inserted.....\n");
//Setting the attribute
$res= $stmt->attr_set(MYSQLI_STMT_ATTR_UPDATE_MAX_LENGTH, TRUE);
if($res){
print("Successful.....\n");
}else{
print("Failed.....\n");
}
$val = $stmt->attr_get(MYSQLI_STMT_ATTR_UPDATE_MAX_LENGTH);
print("Value:".$val);
//Executing the statement
$stmt->execute();
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
这将产生以下结果 -
Table Created..... Record Inserted..... Successful..... Value:1
相关用法
- PHP mysqli_stmt_attr_get()用法及代码示例
- PHP mysqli_stmt_affected_rows()用法及代码示例
- PHP mysqli_stmt_fetch()用法及代码示例
- PHP mysqli_stmt_data_seek()用法及代码示例
- PHP mysqli_stmt_free_result()用法及代码示例
- PHP mysqli_stmt_error()用法及代码示例
- PHP mysqli_stmt_field_count()用法及代码示例
- PHP mysqli_stmt_errno()用法及代码示例
- PHP mysqli_stmt_get_result()用法及代码示例
- PHP mysqli_stmt_init()用法及代码示例
- PHP mysqli_stmt_bind_result()用法及代码示例
- PHP mysqli_stmt_store_result()用法及代码示例
- PHP mysqli_stmt_reset()用法及代码示例
- PHP mysqli_stmt_param_count()用法及代码示例
- PHP mysqli_stmt_prepare()用法及代码示例
- PHP mysqli_stmt_sqlstate()用法及代码示例
- PHP mysqli_stmt_bind_param()用法及代码示例
- PHP mysqli_stmt_close()用法及代码示例
- PHP mysqli_stmt_num_rows()用法及代码示例
- PHP mysqli_stmt_result_metadata()用法及代码示例
注:本文由纯净天空筛选整理自 PHP mysqli_stmt_attr_set() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。