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.

22 lines
368 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. } else {
  13. header('Location: ' . route('weixin_login'));
  14. exit;
  15. }
  16. return $next($request);
  17. }
  18. }