cakephp 打印 sql 语句的代码

前端之家收集整理的这篇文章主要介绍了cakephp 打印 sql 语句的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

cakePHP 打印 sql 语句的代码

将以下语句复制到你的代码中,可以打印出在这之前所有的sql语句:

Copy to Clipboard

Liehuo.Net Codes

引用的内容[www.veryhuo.com]
$sources = ConnectionManager::sourceList();
if (!isset($logs)):
$logs = array();
foreach ($sources as $source):
$db =& ConnectionManager::getDataSource($source);
if (!$db->isInterfaceSupported('getLog')):
continue;
endif;
$logs[$source] = $db->getLog();
endforeach;
endif;

猜你在找的PHP相关文章