Skip to content

Instantly share code, notes, and snippets.

@chuprik
Created April 13, 2016 20:35
Show Gist options
  • Save chuprik/e2eda29652b11bd199e2797dd727860a to your computer and use it in GitHub Desktop.
Save chuprik/e2eda29652b11bd199e2797dd727860a to your computer and use it in GitHub Desktop.
<?php
function dumpQuery(\yii\db\ActiveQuery $query)
{
echo '<pre>';
var_export($query->prepare(\Yii::$app->db->queryBuilder)->createCommand(\Yii::$app->db)->rawSql);
echo '</pre>';
Yii::$app->end();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment