MySQLi 中的准备语句提供两种主要的方法来检索查询结果:bind_result 和 get_result。本文比较了每种方法的用途、优点和限制。
bind_result 方法将变量显式绑定到查询返回的列。它要求变量的顺序严格匹配列结构,通常在查询返回特定列子集时使用。
优点:
缺点:
get_result 方法返回一个包含查询的整个结果集的对象。它需要 MySQL 本机驱动程序 (mysqlnd) 并提供更大的灵活性。
优点:
缺点:
<?php $query1 = 'SELECT id, first_name, last_name, username FROM `table` WHERE id = ?'; $id = 5; $stmt = $mysqli->prepare($query1); $stmt->bind_param('i', $id); $stmt->execute(); $stmt->store_result(); $stmt->bind_result($id, $first_name, $last_name, $username); while ($stmt->fetch()) { echo 'ID: ' . $id . '<br>'; echo 'First Name: ' . $first_name . '<br>'; echo 'Last Name: ' . $last_name . '<br>'; echo 'Username: ' . $username . '<br><br>'; } ?>
<?php $query2 = 'SELECT * FROM `table` WHERE id = ?'; $id = 5; $stmt = $mysqli->prepare($query2); $stmt->bind_param('i', $id); $stmt->execute(); $result = $stmt->get_result(); while ($row = $result->fetch_assoc()) { echo 'ID: ' . $row['id'] . '<br>'; echo 'First Name: ' . $row['first_name'] . '<br>'; echo 'Last Name: ' . $row['last_name'] . '<br>'; echo 'Username: ' . $row['username'] . '<br><br>'; } ?>
bind_result 和 get_result 的选择取决于应用程序的具体要求。 bind_result 提供与旧 PHP 版本的兼容性,并允许精确的变量绑定,而 get_result 提供灵活性并消除手动变量绑定的需要。然而,get_result 需要 MySQL Native Driver。
以上是MySQLi 中的'bind_result”与'get_result”:您应该选择哪种预准备语句方法?的详细内容。更多信息请关注PHP中文网其他相关文章!