Last active
March 6, 2018 10:35
-
-
Save leben-jp/e52fc10d887aacb1ac238d78ca9072b0 to your computer and use it in GitHub Desktop.
コードイグナイターで最後のqueryを表示する方法
This file contains 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 | |
$this->db->select('*'); | |
$this->db->from('users'); | |
$query = $this->db->get(); | |
echo $this->db->last_query(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment