PHP PDO - 输出准备好的语句
我使用 PDO 准备好的声明。并执行该方法。
我想在执行之前显示语句,并替换数据 - 真正的 1:1 语句作为字符串?
有什么想法吗?
I use a prepared statment wiht PDO. and the method execute.
I want to display the statment before it is executed, with the data replaced - the real 1:1 statment as a string?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 PDOStatement::debugDumpParams。
由于参数不一定混合到客户端的 sql 语句中(即您的 php 脚本),我想这已经是您所要求的最接近的了。
Take a look at PDOStatement::debugDumpParams.
Since the parameters are not necessarily mixed into the sql statement at the client-side (i.e. your php script) I suppose that's as close as you can get to what you've asked for.