Index.php 263 B

123456789101112
  1. <?php
  2. namespace Controller;
  3. class index extends \Qii\Base\Controller
  4. {
  5. public $enableModel = true;
  6. public function indexAction()
  7. {
  8. echo __CLASS__;
  9. print_r($this->db->getRow('SELECT * FROM ipAddress ORDER BY id DESC LIMIT 1'));
  10. }
  11. }