mysqli_stmt_store_result()函数从准备好的语句存储结果集。
mysqli_stmt_store_result()函数接受语句对象作为参数,并在执行SELECT,SHOW或DESCRIBE语句时在本地存储给定语句的结果集。
mysqli_stmt_store_result($stmt);
序号 | 参数及说明 |
---|---|
1 | stmt(必需) 这是表示准备好的语句的对象。 |
2 | offset(必需) 这是表示所需行的整数值(必须在 0 到 结果集中的行总数 之间)。 |
PHP mysqli_stmt_attr_get()函数返回一个布尔值,如果成功,则返回TRUE;如果失败,则返回FALSE。
此函数最初是在PHP版本5中引入的,并且可以在所有更高版本中使用。
以下示例演示了mysqli_stmt_store_result()函数的用法(面向过程风格)-
<?php $con = mysqli_connect("localhost", "root", "password", "mydb"); mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)"); mysqli_query($con, "insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)"); print("创建表.....\n"); //读取记录 $stmt = mysqli_prepare($con, "SELECT * FROM Test"); //执行语句 mysqli_stmt_execute($stmt); //存储结果 mysqli_stmt_store_result($stmt); //行数 $count = mysqli_stmt_num_rows($stmt); print("表中的行数: ".$count."\n"); //结束语句 mysqli_stmt_close($stmt); //关闭连接 mysqli_close($con); ?>
输出结果
创建表..... 表中的行数: 3
在面向对象风格中,此函数的语法为$stmt-> store_result();。以下是面向对象风格中此函数的示例;
<?php //建立连接 $con = new mysqli("localhost", "root", "password", "mydb"); $con -> query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)"); $con -> query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)"); print("创建表.....\n"); $stmt = $con -> prepare( "SELECT * FROM Test"); //执行语句 $stmt->execute(); //存储结果 $stmt->store_result(); print("行数".$stmt ->num_rows); //结束语句 $stmt->close(); //关闭连接 $con->close(); ?>
输出结果
创建表..... 行数: 3