Skip to content

Instantly share code, notes, and snippets.

@leben-jp
Created March 7, 2018 02:30
Show Gist options
  • Select an option

  • Save leben-jp/cfd80fbee7324d1fc7ed35542d24df39 to your computer and use it in GitHub Desktop.

Select an option

Save leben-jp/cfd80fbee7324d1fc7ed35542d24df39 to your computer and use it in GitHub Desktop.
<?php
// DBクラスを使用しSQLを実行
$query = DB::select()->from('user');
$query->where('deleted', 1);
$res = $query->execute()->as_array();
// 実行したSQLクエリを表示
var_dump(DB::last_query());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment