Skip to content

Instantly share code, notes, and snippets.

@timothylhuillier
Created June 12, 2013 19:21
Show Gist options
  • Save timothylhuillier/5768295 to your computer and use it in GitHub Desktop.
Save timothylhuillier/5768295 to your computer and use it in GitHub Desktop.
QueryLog : pour analyser les requête sql qui sont executés
// enregistre toute les requêtes éffectué une par une dans un array
$query = DB::getQueryLog();
// affiche la dernière requête qui est executé
$last_query = end($query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment