16 lines
284 B
PHP
16 lines
284 B
PHP
|
<?php
|
||
|
|
||
|
// works only if you use doctrine database handler
|
||
|
|
||
|
$dbh = $session->getDBH();
|
||
|
|
||
|
$times = $dbh->getExecTimes();
|
||
|
|
||
|
// print all executed queries and their execution times
|
||
|
|
||
|
foreach($dbh->getQueries() as $index => $query) {
|
||
|
print $query." ".$times[$index];
|
||
|
}
|
||
|
|
||
|
?>
|