Created
March 7, 2018 02:30
-
-
Save leben-jp/cfd80fbee7324d1fc7ed35542d24df39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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