可能重复:
PDO 准备好的语句
我确信这个问题的答案很简单,但我似乎无法找到它。
我正在使用 PDO(PHP 数据对象)对 MySQL 数据库运行查询,并且会发现在对数据库执行之前显示准备好的查询很有用。
有没有办法做到这一点?例如:
$query = 'SELECT Id, Name, Comment FROM Users WHERE Id = :id';
$pdoStatement = $db->prepare($query);
$pdoStatement->bindValue(':id', $id);
// How can I view the actual statement that will be executed, showing the real
// value that will be used in place of ':id'
$pdoStatement->execute();