从 PDO 准备好的语句中获取查询
有没有办法检索用于生成 PDO 准备语句对象的查询?
Is there a way to retrieve the query that was used to generate a PDO Prepared statement object?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试 $statement->queryString。
Try $statement->queryString.
实现您想要的最简单的方法是:
只需确保在执行语句后添加它即可。
The simplest way to achieve what you want is:
Just make sure you add it after executing the statement.
如果您不反对扩展默认的 \PDO 和 \PDOStatement 对象,您可以考虑查看:
github.com/noahheck/E_PDOStatement
PDO 的此扩展允许您查看完整的查询语句,作为可能在数据库级别执行的示例。它使用正则表达式来插入 PDO 语句的绑定参数。
通过扩展默认的 \PDOStatement 定义,E_PDOStatement 能够为默认功能提供此增强功能,而无需修改正常工作流程。
免责声明:我创建了此扩展程序。
我只是希望它对其他人有帮助。
If you aren't opposed to extending the default \PDO and \PDOStatement object, you might consider looking at:
github.com/noahheck/E_PDOStatement
This extension to PDO allows you to see a full query statement as an example of what might be executed at the database level. It uses regex to interpolate the bound parameters of your PDO statement.
By extending the default \PDOStatement definition, E_PDOStatement is able to offer this enhancement to the default functionality without requiring modification to your normal work flow.
Disclaimer: I created this extension.
I just hope it's helpful to someone else.
这个程序有效。由于 debugDumpParams() 不返回输出。这是我设计的一个小技巧。
希望这有帮助。
This procedure works. Since debugDumpParams() doesn't return the output. Here is a little trick i designed.
Hope this helps.