這篇文章主要介紹了cakephp打印sql語句的方法,可實(shí)現(xiàn)打印輸出之前全部SQL語句的功能,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了cakephp打印sql語句的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
將以下語句復(fù)制到你的代碼中,可以打印出在這之前所有的sql語句:
$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;
希望本文所述對大家基于cakePHP框架的php程序設(shè)計(jì)有所幫助。
更多信息請查看IT技術(shù)專欄