如何使用 bind_result 与 get_result 的示例

Example of how to use bind_result vs get_result

提问人:Arian Faurtosh 提问时间:9/12/2013 最后编辑:Amirhossein MehrvarziArian Faurtosh 更新时间:1/18/2022 访问量:114525

问:

我想看一个如何使用 vs 调用的示例。 以及使用一个而不是另一个的目的是什么。bind_resultget_result

还有使用每种方法的利弊。

使用两者有什么限制,有什么区别。

php mysql mysqli 预备语句

评论


答:

213赞 Arian Faurtosh 9/12/2013 #1

尽管这两种方法都适用于查询,但在使用时,列通常会在查询中显式列出,因此在 中分配返回值时可以查阅列表,因为变量的顺序必须严格匹配返回行的结构。*bind_result()bind_result()

使用示例 1$query1bind_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$query2get_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)

评论

10赞 Sablefoste 10/30/2014
天哪,我希望在我把所有东西都绑定到 .感谢您的详细解释!一个警告;根据手册,get_result() 仅适用于 mysqlnd。$row[]
2赞 Karl Adler 5/23/2015
对于所有 get_result() 方法不起作用的人:stackoverflow.com/questions/8321096/...
2赞 Axel Heider 10/3/2017
bind_result()似乎适用于使用“的 SQL 查询,您只需要知道查询返回哪些列。你在这里看到什么问题?*
1赞 Black 9/16/2019
@Arian,我只是尝试了一下,但它有效,我们为什么需要它?$stmt->store_result();
1赞 Arian Faurtosh 9/17/2019
@Black它存储查询的属性...例如返回的行数等。
3赞 Your Common Sense 9/12/2013 #2

您可以在相应的手册页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()

0赞 Norman Edance 11/4/2015 #3

我注意到的主要区别是,当您尝试在其他$stmt中编写嵌套$stmt时,会给您带来错误,即正在获取(没有):bind_result()2014mysqli::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;
    }
    

评论

1赞 Arian Faurtosh 11/4/2015
这实际上并不完全正确......您没有正确使用bind_result
1赞 Arian Faurtosh 11/4/2015
如果你使用它将允许你做嵌套在其他里面$stmt->store_result()$stmt$stmt
0赞 Norman Edance 11/4/2015
@ArianFaurtosh,我做错了什么?PHP.net 上关于 mysqli_stmt::bind_result 的文档没有告诉我任何关于我的错误的信息......还是使用一个好的做法?$stmt->store_result()
0赞 Norman Edance 11/4/2015
@ArianFaurtosh,我认为如果发送一个大的结果集,它可能会成为一个问题,还是我错了?是的,对于这个例子来说,也许它并不那么重要,但是......无论如何,thnx 纠正我:)mysql_store_result ()
2赞 mti2935 7/21/2016 #4

get_result()只有在PHP中通过安装MySQL本机驱动程序(mysqlnd)才能使用。在某些环境中,可能不可能或不希望安装 mysqlnd。

尽管如此,您仍然可以使用 mysqli 进行查询,并使用字段名称获取结果 - 尽管它比使用 稍微复杂一些,并且涉及使用 PHP 的函数。请参阅如何在 php 中使用 bind_result() 而不是 get_result() 中的示例,它执行简单的查询并将结果(带有列名)输出到 HTML 表。SELECT *get_result()call_user_func_array()SELECT *