gpt4 book ai didi

php - 在 Laravel 应用程序中访问核心 PHP 应用程序 session 时遇到的问题

转载 作者:可可西里 更新时间:2023-11-01 10:53:25 30 4
gpt4 key购买 nike

我有以下两个应用程序:

  1. 在 CorePHP 中的应用
  2. 在 Laravel 中的应用

我想访问从 CorePHP 应用程序到 Laravel 应用程序的 session 。

为此,我使用了以下过程:

<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
use Closure;
use Illuminate\Support\Facades\Session;
use Illuminate\Http\Response;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use Illuminate\Http\HttpFoundation\Response;


class UserAuthenticateMiddleware extends Middleware {

public function handle($request, Closure $next) {
foreach(Session::all() as $key => $value)
{
$_SESSION[$key] = $value;
}
print_r($_SESSION);
}
}

但是,我收到以下错误:

Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_RECOVERABLE_ERROR)
Type error: Argument 1 passed to Illuminate\Session\Middleware\StartSession::addCookieToResponse() must be an instance of Symfony\Component\HttpFoundation\Response, null given, called in /home/dixon/php7esupport/esupport/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php

此问题的可能原因是什么?

最佳答案

除非您没有展示整个函数,否则您会忘记 return $next($request);

所以它会是这样的:

public function handle($request, Closure $next) {
foreach(Session::all() as $key => $value){
$_SESSION[$key] = $value;
}
return $next($request);
}

关于php - 在 Laravel 应用程序中访问核心 PHP 应用程序 session 时遇到的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50344184/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com