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.
我是 Wamp 和 php & mysql 的新手。在网页下方,我可以看到所有已执行的查询。我该如何隐藏这个?
app/config/core.php如果您使用的是 Cakephp ,则可以控制调试信息。只需关闭调试模式,如下所示:
app/config/core.php
Configure::write('debug',0);
您只需echo $this->element('sql_dump');在默认页面中注释以下代码view/layouts/default.ctp
echo $this->element('sql_dump');
view/layouts/default.ctp