Index.php 352 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * To change this license header, choose License Headers in Project Properties.
  4. * To change this template file, choose Tools | Templates
  5. * and open the template in the editor.
  6. */
  7. namespace app\index\controller;
  8. use think\Controller;
  9. class Index extends Controller
  10. {
  11. public function index(){
  12. echo "index";
  13. }
  14. }