コード例 #1
0
ファイル: SQL.php プロジェクト: ice-gyx/transfer
 /**
  * Echo Last Sql And Exit
  */
 function esqlLastSql()
 {
     $query = lastSql();
     sql($query['query'], $query['bindings']);
     exit;
 }
コード例 #2
0
ファイル: Print.php プロジェクト: ice-gyx/transfer
 function dumpLastSql()
 {
     dump(lastSql());
 }