1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/manual/codes/Database operations - Query logging.php

16 lines
281 B
PHP

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