mobile.php 347 B

12345678910111213141516171819202122
  1. <?php
  2. namespace WY\app\controller;
  3. use WY\app\libs\Controller;
  4. if (!defined('WY_ROOT')) {
  5. exit;
  6. }
  7. class mobile extends Controller
  8. {
  9. function __construct()
  10. {
  11. parent::__construct();
  12. }
  13. public function index()
  14. {
  15. $data = array('title' => '手机网站');
  16. $this->put('mobile.php', $data);
  17. }
  18. }
  19. ?>