PhbController.php 237 B

123456789101112
  1. <?php
  2. namespace app\index\controller;
  3. use cmf\controller\HomeBaseController;
  4. use think\Db;
  5. class PhbController extends HomeBaseController
  6. {
  7. public function index()
  8. {
  9. return $this->fetch();
  10. }
  11. }
  12. ?>