作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 CAKEPHP 中,函数 $this->element('sql_dump')
在屏幕上打印执行的 sql 查询。$this->element('sql_dump')
仅适用于 debug mode = 2
这工作正常,但我希望以下工作能够工作:
回显
sql 转储,而是将其邮寄给自己这可能吗?如何实现?
谢谢你的帮助
最佳答案
要在 Debug模式为 0 时获取调试信息,您必须在执行查询之前操作数据源。
在你的 Controller 中:
$db = $this->MyModel->getDataSource();
$db->fullDebug = true;
$this->MyModel->find(...);
$log = $db->getLog();
$db->fullDebug = false;
// email yourself the log
关于cakephp - 回声 $this->元素 ('sql_dump' );无需调试并通过邮件发送,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14981941/
在 CAKEPHP 中,函数 $this->element('sql_dump') 在屏幕上打印执行的 sql 查询。$this->element('sql_dump') 仅适用于 debug mod
我是一名优秀的程序员,十分优秀!