<tfoot id='ojKbd'></tfoot>

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

    • <bdo id='ojKbd'></bdo><ul id='ojKbd'></ul>

    1. <small id='ojKbd'></small><noframes id='ojKbd'>

      获取带有绑定参数的 PDO 查询字符串而不执行它

      时间:2023-10-05

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

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

                <tfoot id='stUxy'></tfoot>

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

                本文介绍了获取带有绑定参数的 PDO 查询字符串而不执行它的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                是否可以在不先执行的情况下从带有绑定参数的 PDO 对象中获取查询字符串?我有类似于以下的代码(其中 $dbc 是 PDO 对象):

                Is it possible to get a query string from a PDO object with bound parameters without executing it first? I have code similar to the following (where $dbc is the PDO object):

                $query = 'SELECT * FROM users WHERE username = ?';
                $result = $dbc->prepare($query);
                $username = 'bob';
                $result->bindParam(1, $username);
                echo $result->queryString;
                

                目前,这将输出一条 SQL 语句,例如:SELECT * FROM users WHERE username = ?".但是,我希望包含绑定参数,使其看起来像:'SELECT * FROM users WHERE username = 'bob'".有没有办法在不执行它或通过某些东西用参数替换问号的情况下做到这一点像 preg_replace?

                Currently, this will echo out a SQL statement like: "SELECT * FROM users WHERE username = ?". However, I would like to have the bound parameter included so that it looks like: 'SELECT * FROM users WHERE username = 'bob'". Is there a way to do that without executing it or replacing the question marks with the parameters through something like preg_replace?

                推荐答案

                简而言之:没有.请参阅从 PDO 准备好的语句中获取原始 SQL 查询字符串

                In short: no. See Getting raw SQL query string from PDO prepared statements

                如果您只想模拟它,请尝试:

                If you want to just emulate it, try:

                echo preg_replace('?', $username, $result->queryString);
                

                这篇关于获取带有绑定参数的 PDO 查询字符串而不执行它的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:PDO 使用 PDO::FETCH_PROPS_LATE 和 __construct() 调用? 下一篇:PDO SQL 状态“00000"但仍然错误?

                相关文章

                最新文章

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

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

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