Skip to content

Instantly share code, notes, and snippets.

@csrui
Created December 27, 2013 18:13
Show Gist options
  • Save csrui/8150612 to your computer and use it in GitHub Desktop.
Save csrui/8150612 to your computer and use it in GitHub Desktop.
Get CakePHP last model's query
public function getLastQuery() {
$dbo = $this->getDatasource();
$logs = $dbo->getLog();
$lastLog = end($logs['log']);
return $lastLog['query'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment