You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
344 B

7 years ago
7 years ago
7 years ago
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Closure;
  4. class WxLogin
  5. {
  6. /**
  7. * 微信端登录验证
  8. */
  9. public function handle($request, Closure $next)
  10. {
  11. if(isset($_SESSION['weixin_user_info']))
  12. {
  13. }
  14. else
  15. {
  16. header('Location: '.route('weixin_login'));exit;
  17. }
  18. return $next($request);
  19. }
  20. }