• <bdo id='9oZyK'></bdo><ul id='9oZyK'></ul>
  • <legend id='9oZyK'><style id='9oZyK'><dir id='9oZyK'><q id='9oZyK'></q></dir></style></legend>

    <i id='9oZyK'><tr id='9oZyK'><dt id='9oZyK'><q id='9oZyK'><span id='9oZyK'><b id='9oZyK'><form id='9oZyK'><ins id='9oZyK'></ins><ul id='9oZyK'></ul><sub id='9oZyK'></sub></form><legend id='9oZyK'></legend><bdo id='9oZyK'><pre id='9oZyK'><center id='9oZyK'></center></pre></bdo></b><th id='9oZyK'></th></span></q></dt></tr></i><div id='9oZyK'><tfoot id='9oZyK'></tfoot><dl id='9oZyK'><fieldset id='9oZyK'></fieldset></dl></div>

  • <tfoot id='9oZyK'></tfoot>
  • <small id='9oZyK'></small><noframes id='9oZyK'>

        循环内 PDO 语句的绑定参数

        时间:2023-09-23
        <legend id='TImQu'><style id='TImQu'><dir id='TImQu'><q id='TImQu'></q></dir></style></legend>

        • <tfoot id='TImQu'></tfoot>
              <tbody id='TImQu'></tbody>

                • <bdo id='TImQu'></bdo><ul id='TImQu'></ul>
                • <i id='TImQu'><tr id='TImQu'><dt id='TImQu'><q id='TImQu'><span id='TImQu'><b id='TImQu'><form id='TImQu'><ins id='TImQu'></ins><ul id='TImQu'></ul><sub id='TImQu'></sub></form><legend id='TImQu'></legend><bdo id='TImQu'><pre id='TImQu'><center id='TImQu'></center></pre></bdo></b><th id='TImQu'></th></span></q></dt></tr></i><div id='TImQu'><tfoot id='TImQu'></tfoot><dl id='TImQu'><fieldset id='TImQu'></fieldset></dl></div>

                  <small id='TImQu'></small><noframes id='TImQu'>

                  本文介绍了循环内 PDO 语句的绑定参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试在循环内绑定 SQL 查询的参数:

                  I'm trying to bind parametres for SQL query inside a loop:

                  $db = new PDO('mysql:dbname=test;host=localhost', 'test', '');  
                  $stmt = $db->prepare('INSERT INTO entries VALUES (NULL, ?, ?, ?, NULL)');
                  
                  $title = 'some titile';
                  $post = 'some text';
                  $date = '2010-whatever';  
                  
                  $reindex = array(1 => $title, $post, $date); // indexed with 1 for bindParam
                  
                  foreach ($reindex as $key => $value) {  
                      $stmt->bindParam($key, $value);  
                      echo "$key</br>$value</br>";  //will output: 1</br>some titile</br>2</br>some text</br>3</br>2010-whatever</br>
                  }
                  

                  以上代码在所有 3 个字段中插入数据库2010-whatever.

                  The code above inserts in database in all 3 fields 2010-whatever.

                  这个很好用:

                  $stmt->bindParam(1, $title);
                  $stmt->bindParam(2, $post);
                  $stmt->bindParam(3, $date);
                  

                  那么,我的问题是为什么 foreach 循环中的代码会失败并在字段中插入错误的数据?

                  So, my question is why the code in the foreach-loop fails and inserts wrong data in the fields?

                  推荐答案

                  问题在于 bindParam 需要引用.它将变量绑定到语句,而不是值.由于 foreach 循环中的变量在每次迭代结束时都未设置,因此您不能使用问题中的代码.

                  The problem is that bindParam requires a reference. It binds the variable to the statement, not the value. Since the variable in a foreach loop is unset at the end of each iteration, you can't use the code in the question.

                  您可以使用 foreach 中的引用执行以下操作:

                  You can do the following, using a reference in the foreach:

                  foreach ($reindex as $key => &$value) {  //pass $value as a reference to the array item
                      $stmt->bindParam($key, $value);  // bind the variable to the statement
                  }
                  

                  或者你可以这样做,使用 bindValue:

                  Or you could do this, using bindValue:

                  foreach ($reindex as $key => $value) {
                      $stmt->bindValue($key, $value);  // bind the value to the statement
                  }
                  

                  这篇关于循环内 PDO 语句的绑定参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在foreach循环php中求和值 下一篇:使用 PHP foreach 解析 JSON 数组

                  相关文章

                  最新文章

                  <small id='VWP99'></small><noframes id='VWP99'>

                    <bdo id='VWP99'></bdo><ul id='VWP99'></ul>
                  <i id='VWP99'><tr id='VWP99'><dt id='VWP99'><q id='VWP99'><span id='VWP99'><b id='VWP99'><form id='VWP99'><ins id='VWP99'></ins><ul id='VWP99'></ul><sub id='VWP99'></sub></form><legend id='VWP99'></legend><bdo id='VWP99'><pre id='VWP99'><center id='VWP99'></center></pre></bdo></b><th id='VWP99'></th></span></q></dt></tr></i><div id='VWP99'><tfoot id='VWP99'></tfoot><dl id='VWP99'><fieldset id='VWP99'></fieldset></dl></div>

                      <tfoot id='VWP99'></tfoot>

                      <legend id='VWP99'><style id='VWP99'><dir id='VWP99'><q id='VWP99'></q></dir></style></legend>