<legend id='Grnbf'><style id='Grnbf'><dir id='Grnbf'><q id='Grnbf'></q></dir></style></legend>
    • <bdo id='Grnbf'></bdo><ul id='Grnbf'></ul>
  • <tfoot id='Grnbf'></tfoot>

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

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

        日期时间现在 PHP mysql(+ PDO 变体)

        时间:2023-09-20

            <legend id='rTlp5'><style id='rTlp5'><dir id='rTlp5'><q id='rTlp5'></q></dir></style></legend>
          • <small id='rTlp5'></small><noframes id='rTlp5'>

              <tbody id='rTlp5'></tbody>
            1. <tfoot id='rTlp5'></tfoot>

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

                  <bdo id='rTlp5'></bdo><ul id='rTlp5'></ul>
                  本文介绍了日期时间现在 PHP mysql(+ PDO 变体)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  Thanks for looking. All helpful answers/comments are up voted.

                  In php, you can use NOW() like this:

                  mysql_query("INSERT INTO tablename (id,      value,      time_created) 
                                              VALUES ('{$id}', '{$value}', NOW())");
                  

                  How can I do the same thing in PDO. When I bind like this, I get an error:

                  $stmt->bindParam(':time_added', NOW(), PDO::PARAM_STR);
                  

                  Is it the PDO:PARAM_STR?

                  解决方案

                  Because nobody has explicitly answered the question, I'll add the correct answer for the sake of completeness.

                  $stmt = $pdoDb->prepare('INSERT INTO tablename (id, value, time_created) VALUES (:id, :value, NOW())');
                  // either bind each parameter explicitly 
                  $stmt->bindParam(':id', $id); // PDOStatement::bindValue() is also possibly
                  $stmt->bindParam(':value', $value);
                  $stmt->execute();
                  // or bind when executing the statement
                  $stmt->execute(array(
                      ':id'    => $id,
                      ':value' => $value
                  ));
                  

                  这篇关于日期时间现在 PHP mysql(+ PDO 变体)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:从 PDO 准备好的语句中获取查询 下一篇:如何在 Postgres 中使用准备好的语句

                  相关文章

                  最新文章

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

                  <tfoot id='gpNCZ'></tfoot>

                      <bdo id='gpNCZ'></bdo><ul id='gpNCZ'></ul>

                  1. <legend id='gpNCZ'><style id='gpNCZ'><dir id='gpNCZ'><q id='gpNCZ'></q></dir></style></legend>
                  2. <small id='gpNCZ'></small><noframes id='gpNCZ'>