提问人:Arian Faurtosh 提问时间:9/12/2013 最后编辑:Amirhossein MehrvarziArian Faurtosh 更新时间:1/18/2022 访问量:114525
如何使用 bind_result 与 get_result 的示例
Example of how to use bind_result vs get_result
问:
我想看一个如何使用 vs 调用的示例。 以及使用一个而不是另一个的目的是什么。bind_result
get_result
还有使用每种方法的利弊。
使用两者有什么限制,有什么区别。
答:
尽管这两种方法都适用于查询,但在使用时,列通常会在查询中显式列出,因此在 中分配返回值时可以查阅列表,因为变量的顺序必须严格匹配返回行的结构。*
bind_result()
bind_result()
使用示例 1$query1
bind_result()
$query1 = 'SELECT id, first_name, last_name, username FROM `table` WHERE id = ?';
$id = 5;
$stmt = $mysqli->prepare($query1);
/*
Binds variables to prepared statement
i corresponding variable has type integer
d corresponding variable has type double
s corresponding variable has type string
b corresponding variable is a blob and will be sent in packets
*/
$stmt->bind_param('i',$id);
/* execute query */
$stmt->execute();
/* Store the result (to get properties) */
$stmt->store_result();
/* Get the number of rows */
$num_of_rows = $stmt->num_rows;
/* Bind the result to variables */
$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>';
}
使用示例 2$query2
get_result()
$query2 = 'SELECT * FROM `table` WHERE id = ?';
$id = 5;
$stmt = $mysqli->prepare($query2);
/*
Binds variables to prepared statement
i corresponding variable has type integer
d corresponding variable has type double
s corresponding variable has type string
b corresponding variable is a blob and will be sent in packets
*/
$stmt->bind_param('i',$id);
/* execute query */
$stmt->execute();
/* Get the result */
$result = $stmt->get_result();
/* Get the number of rows */
$num_of_rows = $result->num_rows;
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()
优点:
- 适用于过时的 PHP 版本
- 返回单独的变量
缺点:
- 所有变量都必须手动列出
- 需要更多代码才能将行作为数组返回
- 每次更改表结构时都必须更新代码
get_result()
优点:
- 返回关联/枚举的数组或对象,自动填充返回行中的数据
- 允许方法一次返回所有返回的行
fetch_all()
缺点:
- 需要 MySQL 本机驱动程序 (mysqlnd)
评论
$row[]
bind_result()
似乎适用于使用“的 SQL 查询,您只需要知道查询返回哪些列。你在这里看到什么问题?*
$stmt->store_result();
您可以在相应的手册页get_result()
和bind_result()
上找到示例。
虽然优点和缺点很简单:
get_result()
是处理结果的唯一理智方法- 然而,它可能并不总是在某些过时且不受支持的 PHP 版本上可用
在现代 Web 应用程序中,数据永远不会立即显示在查询中。必须首先收集数据,然后才必须开始输出。或者,即使您不遵循最佳实践,在某些情况下也必须返回数据,而不是立即打印。
牢记这一点,让我们看看如何使用这两种方法编写一个代码,将所选数据作为关联数组的嵌套数组返回。
bind_result()
$query1 = 'SELECT id, first_name, last_name, username FROM `table` WHERE id = ?';
$stmt = $mysqli->prepare($query1);
$stmt->bind_param('s',$id);
$stmt->execute();
$stmt->store_result();
$stmt->bind_result($id, $first_name, $last_name, $username);
$rows = [];
while ($stmt->fetch()) {
$rows[] = [
'id' => $id,
'first_name' => $first_name,
'last_name' => $last_name,
'username' => $username,
];
}
并记住每次在表中添加或删除列时都要编辑此代码。
get_result()
$query2 = 'SELECT * FROM `table` WHERE id = ?';
$stmt = $mysqli->prepare($query2);
$stmt->bind_param('s', $id);
$stmt->execute();
$rows = $stmt->get_result()->fetch_all(MYSQLI_ASSOC);
当表结构发生更改时,此代码保持不变。
还有更多。
如果您决定将准备/绑定/执行的无聊例程自动化为一个简洁的函数,则可以这样调用
$query = 'SELECT * FROM `table` WHERE id = ?';
$rows = prepared_select($query, [$id])->fetch_all(MYSQLI_ASSOC);
这将是一项相当合理的任务,只需几行即可。但随之而来的将是一个乏味的追求。get_result()
bind_param()
这就是为什么我称这种方法为“丑陋”。bind_result()
我注意到的主要区别是,当您尝试在其他$stmt中编写嵌套$stmt时,会给您带来错误,即正在获取(没有):bind_result()
2014
mysqli::store_result()
准备失败:(2014) 命令不同步;您现在无法运行此命令
例:
主代码中使用的函数。
function GetUserName($id) { global $conn; $sql = "SELECT name FROM users WHERE id = ?"; if ($stmt = $conn->prepare($sql)) { $stmt->bind_param('i', $id); $stmt->execute(); $stmt->bind_result($name); while ($stmt->fetch()) { return $name; } $stmt->close(); } else { echo "Prepare failed: (" . $conn->errno . ") " . $conn->error; } }
主代码。
$sql = "SELECT from_id, to_id, content FROM `direct_message` WHERE `to_id` = ?"; if ($stmt = $conn->prepare($sql)) { $stmt->bind_param('i', $myID); /* execute statement */ $stmt->execute(); /* bind result variables */ $stmt->bind_result($from, $to, $text); /* fetch values */ while ($stmt->fetch()) { echo "<li>"; echo "<p>Message from: ".GetUserName($from)."</p>"; echo "<p>Message content: ".$text."</p>"; echo "</li>"; } /* close statement */ $stmt->close(); } else { echo "Prepare failed: (" . $conn->errno . ") " . $conn->error; }
评论
bind_result
$stmt->store_result()
$stmt
$stmt
mysqli_stmt::bind_result
的文档没有告诉我任何关于我的错误的信息......还是使用一个好的做法?$stmt->store_result()
mysql_store_result ()
get_result()
只有在PHP中通过安装MySQL本机驱动程序(mysqlnd)才能使用。在某些环境中,可能不可能或不希望安装 mysqlnd。
尽管如此,您仍然可以使用 mysqli 进行查询,并使用字段名称获取结果 - 尽管它比使用 稍微复杂一些,并且涉及使用 PHP 的函数。请参阅如何在 php 中使用 bind_result() 而不是 get_result() 中的示例,它执行简单的查询并将结果(带有列名)输出到 HTML 表。SELECT *
get_result()
call_user_func_array()
SELECT *
评论