panique/pdo-debug
Composer 安装命令:
composer require panique/pdo-debug
包简介
A super-simple function that returns the full SQL query from your PDO statements
README 文档
README
Shows the SQL query constructed by PDO. Seriously. The magic behind: A simple function that combines your parameters and the raw query. Please note that this is just an emulation, not the "real" result of PDO, but it does the job for nearly all common daily tasks. Way better than NOTHING!
Features
- one simple global function
debugPDO($sql, $parameters) - works with named parameters (like ':param_1') and question-mark-parameters (like '?')
- this repo also contains a demo .sql file for easily testing the example below
Big thanks to
Taken from here: http://stackoverflow.com/questions/210564/getting-raw-sql-query-string-from-pdo-prepared-statements, big big big thanks to bigwebguy (http://stackoverflow.com/users/168256/bigwebguy) and Mike (http://stackoverflow.com/users/1083889/mike) for creating the debugQuery() function!
How to add to a project
As usual, require this via Composer (require-dev might be more useful as you definitely don't need this in production):
"require-dev": { "panique/pdo-debug": "0.2" }
How to use
Your PDO block probably looks like this:
$sql = "INSERT INTO test (col1, col2, col3) VALUES (:col1, :col2, :col3)";
and this, right ?
$query->execute(array(':col1' => $param_1, ':col2' => $param_2, ':col3' => $param_3));
To use this PDO logger, you'll have to rebuild the param array a little bit: Create an array that has the identifier as the key and the parameter as the value, like below: WARNING: write this WITHOUT the colon! The keys need to be 'xxx', not ':xxx'!
$parameters = array( 'param1' => 'hello', 'param2' => 123, 'param3' => null );
Your full PDO block would then look like:
$sql = "INSERT INTO test (col1, col2, col3) VALUES (:param1, :param2, :param3)"; $query = $database_connection->prepare($sql); $query->execute($parameters);
Now you can debug / log the full SQL statement by using the static method show() of the PdoDebugger class. Make sure
to pass the raw SQL statement and the parameters array that contains proper keys and values. Future releases might have
a more professional way of handling this.
echo PdoDebugger::show($sql, $parameters);
The result of this example will be:
INSERT INTO test (col1, col2, col3) VALUES ('hello', 123, NULL)
Yeah!
Support the project (and others)
Support the project by renting a server at DigitalOcean or just tipping a coffee at BuyMeACoffee.com. Thanks! :)
panique/pdo-debug 适用场景与选型建议
panique/pdo-debug 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 110.35k 次下载、GitHub Stars 达 69, 最近一次更新时间为 2014 年 07 月 08 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「log」 「sql」 「debug」 「logger」 「pdo」 「debugger」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 panique/pdo-debug 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 panique/pdo-debug 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 panique/pdo-debug 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Debug your SimpleBus EventBus and CommandBus
nice output for debug functions for PHP 5.3
Query filtering in your frontend
Analysis module for finding problematical shop data.
Twig extensions for Tracy Debugger
Stackdriver handler for Monolog (codeinternetapplications/monolog-stackdriver Fork).
统计信息
- 总下载量: 110.35k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 70
- 点击次数: 46
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-07-08