Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在对 SQLite 数据库的某些查询中遇到了一些奇怪的结果。因此,我希望看到发送到数据库的真实查询。我正在使用 PDO,我能得到的最接近的是
$statement->debugDumpParams();
但这只是一个抽象的表示,而不是最终的查询。
有什么办法可以查看实际发送到数据库驱动程序的内容?似乎有一个 C 接口trace(),但据我所知,我无法从 PHP 中访问它。