BaseController.class.php 357 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/5/29 0029
  6. * Time: 10:06
  7. */
  8. namespace Admin\Controller;
  9. use Think\Controller;
  10. class BaseController extends Controller{
  11. public function _initialize(){
  12. if (!$_SESSION['id']){
  13. $this->redirect('Login/index');
  14. }else{
  15. }
  16. }
  17. }